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