マニフェスト.json:
{
"background_page": "background.html",
"browser_action": {
"default_icon": "icon-128.png"
},
"name": "testtt",
"description": "testttttttt",
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png" },
"permissions": [
"tabs",
"http://*/*",
"https://*/*"
],
"version": "0.1"
}
background.html:
<script>
chrome.browserAction.onClicked.addListener(function(tab) {
chrome.tabs.executeScript(tab.id, {file: "bookmarklet.js"})
});
</script>
ブックマークレット.js:
alert("hello");
この拡張機能をインストールすると、右上のボタンが機能しません。そのため、動作させるにはクロムを再起動する必要があります。なんで ?