我在這裏發帖,看看你是否有這個錯誤的概念,昨晚在我的Chrome擴展中進行了修改。由於圖標擴展的背景是橙色,不會改變:Chrome 33.0.1750.117米,背景圖標擴展名是橙色
http://img15.hostingpics.net/pics/388737bug.png
第一個圖標是當地的擴展,從Chrome網上應用店第二
這裏是的意見圖標,當啓用時,當它不是。此錯誤(?)僅在Google Chrome瀏覽器中出現,不在Chromium或Canary中。
Link extension activated : http://img15.hostingpics.net/pics/791653icon19.png
Link extension disabled : http://img15.hostingpics.net/pics/751957icon19deactivate.png
我正在使用Windows 7,但我還沒有嘗試卸載Chrome,看看是否解決了這個問題。
manifest.json的:
{
"manifest_version": 2,
"name": "YouTube Dark Theme : Black and Red",
"short_name": "Black & Red",
"description": "Youtube theme : Specially for night or prevent the flash effect overnight.",
"version": "1.29",
"permissions": [
"http://www.youtube.com/"
],
"content_scripts": [
{
"matches": ["http://www.youtube.com/*", "https://www.youtube.com/*"],
"js": ["youtube_theme_b_r.js"],
"run_at": "document_start"
},
{
"matches": ["*://apis.google.com/*/widget/render/comments*", "*://plus.googleapis.com/*/widget/render/comments*"],
"js": ["youtube_theme_b_r_comments.js"],
"run_at": "document_start",
"all_frames": true
}
],
"background": {
"page": "background.html",
"persistent": false
},
"browser_action": {
"default_icon": "images/icon_19.png",
"default_title": "Youtube Dark Theme : Black and Red"
},
"icons": {
"19": "images/icon_19.png",
"48": "images/icon_48.png",
"96": "images/icon_96.png"
},
"web_accessible_resources": [
"youtube_dark_theme_min.css",
"youtube_dark_theme_comments_min.css"
]
}
謝謝。
發佈您的manifest.json。 – Teepeemm
謝謝你的回答,我編輯我的第一篇文章。 – TyrionGraphiste