]> git.wh0rd.org - chrome-ext/clearhistory-advance-fork.git/blob - manifest.json
add an option to automatically purge history
[chrome-ext/clearhistory-advance-fork.git] / manifest.json
1 {
2 "name": "__MSG_name__",
3 "default_locale": "en",
4 "manifest_version": 2,
5 "version": "1.5.0",
6 "description": "__MSG_description__",
7 "permissions": [
8 "alarms",
9 "tabs",
10 "history",
11 "cookies",
12 "notifications",
13 "http://*/*",
14 "https://*/*"
15 ],
16 "background": {
17 "persistent": false,
18 "scripts": [
19 "javascript/background.js",
20 "javascript/util.js",
21 "javascript/clearhistory.js"
22 ]
23 },
24 "options_page": "views/options.html",
25 "browser_action": {
26 "default_icon": "images/icon32.png",
27 "default_title": "__MSG_title__"
28 },
29 "icons": {
30 "16": "images/icon16.png",
31 "32": "images/icon32.png",
32 "48": "images/icon48.png",
33 "128": "images/icon128.png"
34 },
35 "web_accessible_resources": [
36 "images/icon48.png"
37 ]
38 }