Manifest version 2 is deprecated

563 views
Skip to first unread message

Diego Chaves

unread,
Mar 16, 2023, 2:49:18 PM3/16/23
to Chromium Extensions
How to resolve? 

{
  "name": "Metadata Extension",
  "description": "Chrome extension to present tasy metadata information",
"version": "1.3",
  "manifest_version": 3,
  "icons": {
    "128": "icon256.png"
  },
"permissions": [
    "activeTab",
    "alarms",
    "declarativeContent",
"storage",
    "tabs",
    "http://*/",
    "https://*/"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
  },
  "options_ui": {
    "chrome_style": true,
    "open_in_tab": false,
    "page": "options.html"
  },
"page_action": {
"default_title": "Tasy Extension",
"default_popup": "popup.html"
},
"content_scripts": [{
    "matches": [
      "http://*/*",
      "https://*/*"
    ],
    "exclude_globs": [
      "/^.*:\/\/localhost(?!:3000\/.*$)(:.*)?\/.*$/"
    ],
    "js": [
      "content.js"
    ],
    "css": [
      "injected.css"
    ]
  }],
"web_accessible_resources": [

    "injected.js"
]
}

Stefan Van Damme

unread,
Mar 23, 2023, 11:47:45 AM3/23/23
to Chromium Extensions, Diego Chaves
Hi there,

Have you read this article about how to migrate to Manifest V3?

Or my developer tutorial, about 10 important Code Notes you Should Know When Migrating to Manifest V3:

Thanks,
Stefan vd

Hrishikesh

unread,
Mar 24, 2023, 12:28:44 AM3/24/23
to Chromium Extensions, Stefan Van Damme, Diego Chaves
Hi,

Here is our guide for migrating manifest from v2 to v3:

https://www.vshsolutions.com/blogs/chrome-extension-manifest-v3-a-migration-guide/
Reply all
Reply to author
Forward
0 new messages