由于注入的脚本不能执行跨域 xmlhttp 请求,因此我尝试过,因为手册中建议将消息从注入的脚本发送到后台脚本以完成这项工作。但我无法让这些消息正常工作。
这是我的代码,它只有三个文件,尽可能简单的扩展。
config.xml
<?xml version="1.0" encoding="utf-8"?>
<widget xmlns="http://www.w3.org/ns/widgets" id="http://www.example.org/helloworld">
<name>postMessage-testcase</name>
<description>check if opera's postMessage fails</description>
</widget>
index.html
<!doctype html>
<html lang="en">
<head>
<script>
opera.extension.onmessage = function(event) {
alert("get the message!");
opera.extension.postMessage("posting reply");
};
</script>
</head>
<body></body>
</html>
includes/user.js
// ==UserScript==
// @include *apod.nasa.gov*
// ==/UserScript==
opera.extension.onmessage = function(event) {
alert("got reply !");
};
alert("yep, I'm on apod, proceeding with messages");
opera.extension.postMessage("message body");
当用户打开 apod.nasa.gov 时,脚本应该来回发送消息,但这里只发送一条消息,没有消息发生,控制台也没有错误显示。