]> git.wh0rd.org - chrome-ext/clearhistory-advance-fork.git/blame - manifest.json
use chrome.storage.sync
[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": [
6565d921 8 "alarms",
a5409a6b
MF
9 "tabs",
10 "history",
11 "cookies",
12 "notifications",
03eef92c 13 "storage",
a5409a6b
MF
14 "http://*/*",
15 "https://*/*"
16 ],
17 "background": {
e70bcd55 18 "persistent": false,
a5409a6b
MF
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"
cca5655f 38 ]
a5409a6b 39}