我從greasemonkey谷歌瀏覽器中安裝了一個userscript。我想更改Chrome>選項>擴展下顯示的圖標。我會怎麼做?我試圖改變「manifest.json」文件,但無濟於事。任何人有想法?谷歌鉻擴展userscript圖標
下面是代碼:
{
"content_scripts": [ {
"exclude_globs": [ ],
"include_globs": [ "http://someurl/" ],
"js": [ "script.js" ],
"matches": [ "http://*/*", "https://*/*" ],
"run_at": "document_idle"
} ],
"converted_from_user_script": true,
"description": "",
"default-icon": "LogIn.png", <-- added this line here and placed png in same folder
"key": ".......=",
"name": "lmi",
"version": "1.0"
}
這是我更新的代碼,但仍然沒有:-(工作
{
"browser_action": {
"default_icon": "images/KeyLock48.png"
},
"content_scripts": [ {
"exclude_globs": [ ],
"include_globs": [ "http://someurl/" ],
"js": [ "script.js" ],
"matches": [ "http://*/*", "https://*/*" ],
"run_at": "document_idle"
} ],
"converted_from_user_script": true,
"description": "",
"icons": {
"128": "images/KeyLock128.png",
"16": "images/KeyLock16.png",
"32": "images/KeyLock32.png",
"48": "images/KeyLock48.png"
},
"key": "....",
"name": "logmi",
"version": "1.0"
}
使用腳本甚至使用清單嗎? ಠ_ఠ – Synetech 2013-07-12 02:17:30