构建我的第一个 Chrome 应用程序,并且想知道如何myscript.js
仅在单击 icon.png 时运行。现在它只在页面加载时运行。
这是我的 manifest.json 文件:
{
"name": "My extension",
"version": "1.0",
"background_page": "background.html",
"permissions": [
"tabs", "http://*/*"
],
"content_scripts": [
{
"matches": ["http://*/*"],
"js": ["myscript.js"],
"run_at": "document_end"
}
],
"browser_action": {
"default_icon": "icon.png"
}
}