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