Shan
Shan

Reputation: 2832

Not able to see the thumbnail for my extensions in "chrome://settings/extensions" when I load a unpacked extension

I am loading an unpacked extension but I am unable to see any thumbnails for my extension under chrome://settings/extensions?

Whether I should add anything in manifest file?

Here is my manifest file..

{
   "name": "a1",
   "version": "1.0",
   "description": "a1",
   "background_page": "background.html",
   "browser_action": {
     "default_icon": "icon.png",
     "popup": "popup.html"
  }
}

Upvotes: 2

Views: 944

Answers (1)

abraham
abraham

Reputation: 47833

browser_action.default_icon is only the icon for the button next to the omnibar. If you want an icon in chrome://settings/extensions you need to set the icon value.

Upvotes: 3

Related Questions