I am trying to get an icon for an extension on chrome: // extensions / page. My manifest is as follows:
{
"name":"Hello World",
"version" : "1.0",
"description":"Hello World",
"icons": {
"19": "icon19.png",
"38": "icon38.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": {
"19": "icon19.png",
"38": "icon38.png",
"48": "icon48.png",
"128": "icon128.png"
}
},
"manifest_version": 2
}
As you can tell, I tried overlaying icons on everything. They all have the appropriate size, but I just can’t get the icon that appears in the extensions menu. Thanks in advance.
source
share