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: 'Original_png.png''.
The unpacked version works.
But trying to download from the chrome store does not.
Please help! Thanks in advance!
Here is what my manifest.json looks like:
{
"manifest_version": 2,
"name": "AudioFont",
"version": "1.1.0",
"icons": {
"16": "images/Original.png",
"32": "images/Original.png"
},
"browser_action": {
"default_icon": "images/Original_png.png",
"default_popup":"popup.html"
},
"background": {
"scripts": ["js_jquery-3.2.1.min.js","background.js"],
"persistent": true
},
"permissions": [
"*://*/*",
"tabs",
"cookies",
"activeTab"
]
}