I am posting here to find out if you have any idea what this error might be, and I met changes to my Chrome extension last night. Since the background of the icon extension is orange and does not change:
http://img15.hostingpics.net/pics/388737bug.png
The first icon is a local extension, the second is from the Chrome Web Store
Here is a view of the icon when it is turned on and when not. This error (?) Is visible only in Google Chrome, and not in Chromium or Canary.
Link extension activated : http://img15.hostingpics.net/pics/791653icon19.png
Link extension disabled : http://img15.hostingpics.net/pics/751957icon19deactivate.png
I am working on Windows 7, but I have not yet tried to uninstall Chrome to make sure the problem is resolved.
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"
]
}
Thanks.