]> git.wh0rd.org - chrome-ext/clearhistory-advance-fork.git/blob - manifest.json
use non-persistent background page
[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 "tabs",
9 "history",
10 "cookies",
11 "notifications",
12 "http://*/*",
13 "https://*/*"
14 ],
15 "background": {
16 "persistent": false,
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"
36 ]
37 }