]> 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": 2,
5 "minimum_chrome_version": "28",
6 "version": "1.5.6",
7 "description": "__MSG_description__",
8 "permissions": [
9 "alarms",
10 "history",
11 "cookies",
12 "downloads",
13 "notifications",
14 "storage",
15 "http://*/*",
16 "https://*/*"
17 ],
18 "background": {
19 "persistent": false,
20 "scripts": [
21 "javascript/background.js",
22 "javascript/util.js",
23 "javascript/clearhistory.js"
24 ]
25 },
26 "options_page": "views/options.html",
27 "browser_action": {
28 "default_icon": "images/icon32.png",
29 "default_title": "__MSG_title__"
30 },
31 "icons": {
32 "16": "images/icon16.png",
33 "32": "images/icon32.png",
34 "48": "images/icon48.png",
35 "128": "images/icon128.png"
36 },
37 "web_accessible_resources": [
38 "images/icon128.png"
39 ]
40 }