forked from june07/NiM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
45 lines (45 loc) · 1.47 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"manifest_version": 2,
"name": "__MSG_appName__",
"short_name": "__MSG_appShortName__",
"version": "0.9.3",
"default_locale": "en",
"description": "__MSG_appDescription__",
"author": "June07 <[email protected]> (http://june07.com/)",
"browser_action": {
"default_title": "__MSG_defaultTitle__",
"default_popup": "popup.html"
},
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"icons": {
"16": "./icon/icon16.png",
"162": "./icon/[email protected]",
"163": "./icon/[email protected]",
"32": "./icon/icon32.png",
"322": "./icon/[email protected]",
"323": "./icon/[email protected]",
"48": "./icon/icon48.png",
"482": "./icon/[email protected]",
"483": "./icon/[email protected]",
"128": "./icon/icon128.png",
"1282": "./icon/[email protected]",
"1283": "./icon/[email protected]"
},
"permissions": ["*://*/", "storage", "background", "tabs"],
"background": {
"page": "background.html"
},
"content_security_policy": "script-src 'self' https://www.google-analytics.com https://ssl.google-analytics.com; object-src 'self' https://www.google-analytics.com https://ssl.google-analytics.com;",
"commands": {
"open-devtools": {
"suggested_key": {
"default": "Ctrl+I",
"mac": "Command+I"
},
"description": "Open the DevTools Window"
}
}
}