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