]> git.wh0rd.org - chrome-ext/clearhistory-advance-fork.git/blame - manifest.json
add an option to run silently -- no notifications at all
[chrome-ext/clearhistory-advance-fork.git] / manifest.json
CommitLineData
a5409a6b
MF
1{
2 "name": "__MSG_name__",
3 "default_locale": "en",
4 "manifest_version": 2,
614dea95
MF
5 "minimum_chrome_version": "28",
6 "version": "1.5.4",
a5409a6b
MF
7 "description": "__MSG_description__",
8 "permissions": [
6565d921 9 "alarms",
a5409a6b
MF
10 "tabs",
11 "history",
12 "cookies",
c8fabbc8 13 "downloads",
a5409a6b 14 "notifications",
03eef92c 15 "storage",
a5409a6b
MF
16 "http://*/*",
17 "https://*/*"
18 ],
19 "background": {
e70bcd55 20 "persistent": false,
a5409a6b
MF
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": [
614dea95 39 "images/icon128.png"
cca5655f 40 ]
a5409a6b 41}