Answers for "how to add an icon to your extension"

2

add icon chrome extension

"icons": { "16": "icon16.png",
           "48": "icon48.png",
          "128": "icon128.png" },
Posted by: Guest on May-26-2020
0

how to add extension logo of chrome

{
  "manifest_version": 2,
  "name": "Demo",
  "description": "This is demo.",
  "version": "1.0",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "permissions": ["activeTab", "storage"]
}
Posted by: Guest on October-29-2020

Code answers related to "how to add an icon to your extension"

Browse Popular Code Answers by Language