-
Notifications
You must be signed in to change notification settings - Fork 10
/
manifest.json
executable file
·58 lines (51 loc) · 1.16 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
50
51
52
53
54
55
56
57
58
{
"manifest_version": 2,
"default_locale": "zh_CN",
"name": "__MSG_extName__",
"description": "__MSG_extDescription__",
"version": "2.0.5",
"options_ui": {
"page": "dist/options.html"
},
"icons": {
"256":"icon/icon.png"
},
"browser_action": {
"browser_style": true,
"default_icon": "icon/icon-64.png",
"default_popup": "dist/popup.html"
},
"background": {
"scripts": ["dist/background.js"],
"persistent": false
},
"permissions": [
"alarms",
"cookies",
"notifications",
"storage",
"*://*.douyu.com/*",
"*://*.zhanqi.tv/*",
"*://*.huya.com/*",
"*://*.bilibili.com/*",
"*://*.twitch.tv/*",
"*://*.huomaotv.cn/*",
"*://*.huomao.com/*",
"*://*.longzhu.com/*",
"*://*.163.com/*",
"*://egame.qq.com/*",
"*://*.openrec.tv/*",
"*://*.douyucdn.cn/*",
"*://*.pdim.gs/*",
"*://*.hdslb.com/*",
"*://*.plures.net/*",
"*://*.dwstatic.com/*",
"*://*.jtvnw.net/*",
"*://*.nimg.jp/*",
"*://*.myqcloud.com/*",
"*://*.qpic.cn/*"
],
"web_accessible_resources": [
"icon.png"
]
}