]> git.wh0rd.org - chrome-ext/clearhistory-advance-fork.git/blob - manifest.json
convert to MV3
[chrome-ext/clearhistory-advance-fork.git] / manifest.json
1 {
2 "name": "__MSG_name__",
3 "default_locale": "en",
4 "manifest_version": 3,
5 "minimum_chrome_version": "100",
6 "version": "2.0",
7 "description": "__MSG_description__",
8 "permissions": [
9 "alarms",
10 "history",
11 "cookies",
12 "downloads",
13 "notifications",
14 "storage"
15 ],
16 "host_permissions": [
17 "http://*/*",
18 "https://*/*"
19 ],
20 "background": {
21 "service_worker": "javascript/clearhistory.js",
22 "type": "module"
23 },
24 "options_page": "views/options.html",
25 "action": {
26 "default_icon": "images/icon32.png",
27 "default_title": "__MSG_title__",
28 "default_popup": "views/popup.html"
29 },
30 "icons": {
31 "16": "images/icon16.png",
32 "32": "images/icon32.png",
33 "48": "images/icon48.png",
34 "128": "images/icon128.png"
35 }
36 }