jetzt
jetzt copied to clipboard
Manifest version 2 is deprecated
after Installing the extension, i get the following error from chrome: "Manifest version 2 is deprecated, and support will be removed in 2023. See https://developer.chrome.com/blog/mv2-transition/ for more details."
Just installed and got the same error, but it says 2024
Manifest version 2 is deprecated, and support will be removed in 2024. See https://developer.chrome.com/docs/extensions/develop/migrate/mv2-deprecation-timeline for details.
{
"manifest_version": 2,
"name": "jetzt",
"description": "Speed Reading",
"version": "1.2.0",
"homepage_url": "https://ds300.github.io/jetzt",
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*", "file:///*"],
"css": ["jetzt.css"],
"js": [
"modules/preamble.js"
, "modules/helpers.js"
, "modules/config.js"
, "modules/themes.js"
, "modules/parse.js"
, "modules/exec.js"
, "modules/view.js"
, "modules/select.js"
, "modules/control.js"
, "modules/init.js"
, "chrome-config.js"
],
"all_frames": true
}
],
"permissions": [
"storage",
"activeTab",
"contextMenus",
"fontSettings"
],
"icons": { "16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png" },
"browser_action" : {
"default_icon" : {
"19": "img/icon19.png",
"38": "img/icon38.png"
},
"default_title" : "speed-read with jetzt"
},
"background": {
"scripts": ["background.js"],
"persistent": false
},
"options_page" : "options/index.html"
}