I just published my first Google Chrome Extension:
https://chrome.google.com/webstore/detail/eojkhidnkbolpneigllnelngopamnafa
Everything is working fine, except that the icon for the extension
does not appear in the Extension Management page (chrome://
extensions/). It just shows a broken puzzle piece.
I have specified the icons value in my manifest file, and included the
appropriate icon sizes. Here is my manifest:
{
"name": "JTV Live",
"version": "0.86",
"description": "Justin TV Extension for displaying a user's favorite
channels which are currently live.",
"options_page":"options.html",
"background_page":"background.html",
"homepage_url": "
http://www.mikechambers.com/blog/2011/07/06/jtv-live-
a-google-chrome-extension-for-justin-tv/",
"icons": {
"16":"images/icon-16.png",
"48":"images/icon-48.png",
"128":"images/icon-128.png"
},
"browser_action": {
"default_icon": "images/icon.png",
"popup":"popup.html",
"default_title":"JTV Live"
},
"permissions": [
"
http://api.justin.tv/",
"notifications",
"tabs"
]
}
Any have any idea what I might be doing wrong?
mike