我正致力于构建chrome扩展。 我有一个错误 - 运行tabs.executeScript时未经检查的runtime.lastError:无法访问Object.callback()上的chrome:// URL。我不知道该怎么做。
的manifest.json
{
"manifest_version": 2,
"name": "tabs",
"description": "testing tabs",
"version": "1.0.4",
"icons": { "128": "icon_128.png" },
"browser_action": {
"default_icon": "icon.png",
"default_title": "A popup will come here"
},
"background": {
"scripts": ["background.js"]
},
"permissions": ["tabs", "*://*/*", "background"]
}
background.js
chrome.tabs.query({}, function(tabs) {
for(var i= 0; i < tabs.length; i++) {
chrome.tabs.executeScript(null, {
code: "console.log('wow');"
});
}
});
提前致谢。