Chrome扩展中的发送响应失败

时间:2015-03-05 09:34:41

标签: google-chrome-extension

这是我的popup.html

chrome.tabs.query({active: true, currentWindow: true}, function(tabs) {
        chrome.tabs.sendMessage(tabs[0].id, {msg: "hello"}, function(response) {
            console.log(response.farewell);
        });
});

这是我的content_script

chrome.runtime.onMessage.addListener (
    function(request, sender, sendResponse) {
        console.log(request.msg + ":" + sender.id);
        sendResponse({farewell: "goodbye"});
        return true;
    }
);

我总是在下面收到此错误:

runtime.onMessage的事件处理程序出错:错误:尝试使用断开连接的端口对象

我已经使用了返回true,有人可以帮忙吗?

0 个答案:

没有答案