Chrome Extension Icon Manifest

前端 未结 2 1051
無奈伤痛
無奈伤痛 2021-01-11 19:41

How to change Chrome Extension icon in this page?

Here\'s my manifest code :

{
  "manifest_versio         


        
2条回答
  •  甜味超标
    2021-01-11 20:32

    It should be:

    {
      "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"]
    }  
    

    See: Chrome Extension Manifest Docs

提交回复
热议问题