基本上,我正在尝试按照 Google 文档做一些 chrome 扩展。每次单击扩展按钮时,我都想注入一个脚本。到目前为止,这是我的清单:
{
"name": "Example",
"manifest_version": 2,
"version": "1.0",
"permissions": [
"tabs"
],
"description": "My Chrome extension.",
"browser_action": {
"default_icon": "icon.png"
},
"background": {
"scripts": ["background.js"]
}
}
这是我的 background.js:
chrome.browserAction.onClicked.addListener(function(tab) {
chrome.tabs.executeScript(tab.id, {code: "content_script.js"});
});
问题是 content_script 没有被触发,即使尝试这么简单alert("aaa");
你能告诉我我做错了什么吗?我想不通。