Firefox Addon - 从网页发送消息到后台脚本

时间:2016-06-30 20:00:54

标签: google-chrome-extension firefox-addon

我试图将Chrome扩展程序转换为FireFox插件。我现在唯一的问题是在我的网页和后台脚本之间进行通信。

在Chrome中,这就是我所做的:

background.js

chrome.runtime.onMessageExternal.addListener(function(request)
{
    if (request.hello) { console.log('hello received'); }
});

网页

chrome.runtime.sendMessage(ChromeExtId, {hello: 1});

我看到FireFox还不支持onMessageExternal,所以我现在完全失去了如何处理这种情况。

非常感谢任何协助。

1 个答案:

答案 0 :(得分:4)

您可以通过内容脚本从网页与background.js进行通信。试试这个:

background.js

chrome.runtime.onMessage.addListener(
    function(request, sender, sendResponse) {
        if (request.hello) {
            console.log('hello received');
        }
    });

内容脚本

var port = chrome.runtime.connect();

window.addEventListener("message", function(event) {

    if (event.source != window)
        return;

    if (event.data.type && (event.data.type == "FROM_PAGE")) {
        console.log("Content script received: " + event.data.text);
        chrome.runtime.sendMessage({
            hello: 1
        });
    }
}, false);

网页

window.postMessage({ type: "FROM_PAGE", text: "Hello from the webpage!" }, "*");