X-Git-Url: https://git.wh0rd.org/?p=chrome-ext%2Fclearhistory-advance-fork.git;a=blobdiff_plain;f=manifest.json;h=7c6425b1693b3c0a598e2e808ff16a8322477927;hp=36a59b47a0f47642b749ad613943fa834c931beb;hb=HEAD;hpb=9b4e90612ad6b01fd9d103d9ebb50fc484c169f6 diff --git a/manifest.json b/manifest.json index 36a59b4..15d7270 100644 --- a/manifest.json +++ b/manifest.json @@ -1,41 +1,36 @@ { "name": "__MSG_name__", "default_locale": "en", - "manifest_version": 2, - "minimum_chrome_version": "28", - "version": "1.5.5", + "manifest_version": 3, + "minimum_chrome_version": "100", + "version": "2.0", "description": "__MSG_description__", "permissions": [ "alarms", - "tabs", "history", "cookies", "downloads", "notifications", - "storage", + "storage" + ], + "host_permissions": [ "http://*/*", "https://*/*" ], "background": { - "persistent": false, - "scripts": [ - "javascript/background.js", - "javascript/util.js", - "javascript/clearhistory.js" - ] + "service_worker": "javascript/clearhistory.js", + "type": "module" }, "options_page": "views/options.html", - "browser_action": { + "action": { "default_icon": "images/icon32.png", - "default_title": "__MSG_title__" + "default_title": "__MSG_title__", + "default_popup": "views/popup.html" }, "icons": { "16": "images/icon16.png", "32": "images/icon32.png", "48": "images/icon48.png", "128": "images/icon128.png" - }, - "web_accessible_resources": [ - "images/icon128.png" - ] + } }