]> git.wh0rd.org - chrome-ext/clearhistory-advance-fork.git/blob - manifest.json
use chrome.storage.sync
[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 "storage",
14 "http://*/*",
15 "https://*/*"
16 ],
17 "background": {
18 "persistent": false,
19 "scripts": [
20 "javascript/background.js",
21 "javascript/util.js",
22 "javascript/clearhistory.js"
23 ]
24 },
25 "options_page": "views/options.html",
26 "browser_action": {
27 "default_icon": "images/icon32.png",
28 "default_title": "__MSG_title__"
29 },
30 "icons": {
31 "16": "images/icon16.png",
32 "32": "images/icon32.png",
33 "48": "images/icon48.png",
34 "128": "images/icon128.png"
35 },
36 "web_accessible_resources": [
37 "images/icon48.png"
38 ]
39 }