-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
manifest.json
44 lines (44 loc) · 1.88 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
{
"manifest_version": 2,
"name": "__MSG_appName__",
"version": "0.0.0",
"default_locale": "en",
"description": "__MSG_appDescription__",
"author": "June07 <667@june07.com> (https://june07.com/)",
"browser_action": {
"default_title": "__MSG_defaultTitle__",
"default_popup": "popup.html"
},
"commands": {
"open-devtools": {
"suggested_key": {
"default": "Alt +I",
"mac": "Alt+I"
},
"description": "__MSG_keyCtrlI__"
}
},
"content_security_policy": "script-src 'self' 'unsafe-eval' 'sha256-gtOYwzQC2zvI6efNM91x1Mr3jBhZaavdB4LuBEIuy64=' https://www.gstatic.com https://www.google-analytics.com https://ssl.google-analytics.com https://riot.june07.com https://june07.github.io https://apis.google.com https://button.flattr.com https://www.paypalobjects.com https://platform.twitter.com https://cdnjs.cloudflare.com https://cdn.jsdelivr.net; object-src 'self' https://www.google-analytics.com https://ssl.google-analytics.com;",
"devtools_page": "devtools.html",
"icons": {
"16": "./icon/icon16.png",
"162": "./icon/icon16@2x.png",
"163": "./icon/icon16@3x.png",
"32": "./icon/icon32.png",
"322": "./icon/icon32@2x.png",
"323": "./icon/icon32@3x.png",
"48": "./icon/icon48.png",
"482": "./icon/icon48@2x.png",
"483": "./icon/icon48@3x.png",
"128": "./icon/icon128.png",
"1282": "./icon/icon128@2x.png",
"1283": "./icon/icon128@3x.png"
},
"background": {
"page": "background.html"
},
"options_page": "options.html",
"permissions": ["*://*/", "storage", "background", "tabs", "identity", "identity.email", "notifications", "contextMenus"],
"short_name": "__MSG_appShortName__",
"version_name": "0.0.0"
}