-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
49 lines (43 loc) · 1.03 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
46
47
48
49
{
"manifest_version": 2,
"name": "__MSG_appName__",
"version": "2.0.9",
"default_locale": "zh_CN",
"description": "__MSG_appDescription__",
"icons": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"browser_action": {
"default_icon": {
"19": "icons/19.png",
"38": "icons/38.png"
},
"default_title": "__MSG_appName__",
"default_popup": "popup.html"
},
"permissions": [
"tabs",
"contextMenus",
"notifications",
"http://*/*",
"https://*/*",
"<all_urls>"
],
"content_scripts": [
{
"matches": ["http://gegedaa.com/oauth2-callback/*"],
"js": ["oauth2_inject.js"],
"run_at": "document_start",
"all_frames": true
}
],
"homepage_url": "http://gegedaa.com/",
"options_page": "settings.html",
"background": {
"page": "bg.html"
},
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
"update_url": "http://gegedaa.b0.upaiyun.com/update/updates.xml"
}