]> git.wh0rd.org - chrome-ext/clearhistory-advance-fork.git/blame - manifest.json
clearhistory-1.5
[chrome-ext/clearhistory-advance-fork.git] / manifest.json
CommitLineData
a5409a6b
MF
1{
2 "name": "__MSG_name__",
3 "default_locale": "en",
4 "manifest_version": 2,
5 "version": "1.5",
6 "description": "__MSG_description__",
7 "permissions": [
8 "tabs",
9 "history",
10 "cookies",
11 "notifications",
12 "http://*/*",
13 "https://*/*"
14 ],
15 "background": {
16 "scripts": [
17 "javascript/background.js",
18 "javascript/util.js",
19 "javascript/clearhistory.js"
20 ]
21 },
22 "options_page": "views/options.html",
23 "browser_action": {
24 "default_icon": "images/icon32.png",
25 "default_title": "__MSG_title__"
26 },
27 "icons": {
28 "16": "images/icon16.png",
29 "32": "images/icon32.png",
30 "48": "images/icon48.png",
31 "128": "images/icon128.png"
32 },
33 "web_accessible_resources": [
34 "images/icon48.png"
35 ],
36 "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
37}