Chrome第一個擴充套件程式

鴨脖發表於2012-06-26

Chrome中的主要檔案是:

第一個是manifest.json,這其中的結構可以參見:

http://open.chrome.360.cn/html/dev_manifest.html

我寫的是:

{
"name":"first chrome",
"version":"1.0",
"description": "Gets information from Google.",
"content_scripts":[ {
"all_frames":true,
"js": [ "jquery.js", "contentscript.js" ],
"matches":["http://*/*"]
}],
"browser_action": {
      "default_icon": "icon.png"
   }
}


然後我需要往每個html頁面中注入js指令碼,所以需要我的指令碼檔案,並將其配置在content_scripts中



相關文章