*其他 js 文件是指你在 popup.html 中包含的文件。 以下代码有效,那么为什么要使用后台脚本?
内容脚本
chrome.extension.onMessage.addListener(
function(request, sender, sendResponse) {
//Some code
}
);
popup.html 中包含的脚本
chrome.tabs.query({active:true,windowId: chrome.windows.WINDOW_ID_CURRENT},
function(tab) {
chrome.tabs.sendMessage(tab[0].id, {method: "someMethod"},
function(response){
//Some code
});
});
这