我在这里发帖,看看你是否知道这个bug可能是什么,昨晚我的Chrome扩展程序已经改变了。由于图标扩展名的背景为橙色且不会更改:
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"
]
}
谢谢。
答案 0 :(得分:1)
Chrome 33是Chromium加强安全性并仅允许来自网上商店(或作为开发人员或企业政策)的扩展。
http://www.chromium.org/developers/extensions-deployment-faq
我找不到任何关于背景为橙色的内容,但它也发生在我的解包扩展上(但不是我发布的扩展名。)
因此,更明显的是,扩展程序不是来自网络商店(对于普通用户来说更安全,并且允许开发人员与他们发布的扩展程序区别开来。)