Hello, I am trying to upload an extension to the chrome store and I am getting the following error message when I try to install the extension:
Package is invalid. Details: 'Could not decode image: 'logo.png''.
The unpacked version works.
And the packed crx version works.
But trying to download from the chrome store does not.
Please help! Thanks in advance!
Here is what my package.json looks like:
{
"name": "",
"author": "",
"description": "",
"version": "1",
"manifest_version": 2,
"icons": {
"16": "app/img/logo-16x16.png" ,
"48": "app/img/logo-48x48.png",
"128": "app/img/logo-128x128.png"
},
"browser_action": {
"default_icon": {
"19": "app/img/logo-19x19.png",
"38": "app/img/logo-38x38.png"
},
"default_title": ""
},
"background": {
"scripts": ["app/js/browser-action.js"]
},
"content_scripts": [{
"matches": ["*://*/*"],
"js": [
"app/js/loader.js",
"app/js/stuff.js"
],
"css": [
"app/css/stuff.css"
]
}],
"web_accessible_resources" : [
"app/index.html"
],
"permissions": [
"*://*/*",
"tabs",
"background"
]
}