这是我的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,有人可以帮忙吗?