kofifus
kofifus

Reputation: 19315

How to set chrome extension icon for chrome://extensions/

I created and published a chrome extension here.

I provided an icon in chrome web store -> Developer dashboard > WhiteBuster and can see it there.

However, after the extension is installed, if I go to chrome://extensions the icon next to the extension is missing (shows empty puzzle).

How can I make my icon show up?

Upvotes: 2

Views: 2031

Answers (1)

Enrique
Enrique

Reputation: 91

Try adding more icons to your manifest.json file. In your case is possible that you're missing one of the icons, specially the big ones.

Include more sizes like this:

"icons": { "16": "icon16.png",
       "48": "icon48.png",
      "128": "icon128.png" },

Here's some official documentation: https://developer.chrome.com/extensions/manifest/icons

Upvotes: 4

Related Questions