chrome.tabs.sendMessage(tabsId[selectedId],
{
"msg": "传给前台的消息"
},
function(response) {
//回传函数
});
chrome.runtime.onMessage.addListener(function(request, sender, sendResponse) {
console.log(" 收到消息 "+ request.msg);
});
错误:Port error: Could not establish connection. Receiving end does not exist.
{
"msg": "传给前台的消息"
},
function(response) {
//回传函数
});
chrome.runtime.onMessage.addListener(function(request, sender, sendResponse) {
console.log(" 收到消息 "+ request.msg);
});
错误:Port error: Could not establish connection. Receiving end does not exist.