-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
41 lines (37 loc) · 988 Bytes
/
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
{
"manifest_version": 2,
"name": "__MSG_extName__",
"short_name": "__MSG_extName__",
"description": "__MSG_extDesc__",
"version": "0.1.3",
"default_locale": "en",
"icons": {
"19": "icon.png"
},
"content_scripts": [
{
"matches": ["*://*.twitch.tv/*"],
"css": [],
"js": [
"jquery-3.3.1.slim.min.js",
"inject.js"
],
"exclude_globs": ["https://www.twitch.tv/directory/*",
"https://www.twitch.tv/p/*",
"https://www.twitch.tv/products/*",
"https://www.twitch.tv/*/manager*",
"https://www.twitch.tv/*/dashboard",
"https://www.twitch.tv/broadcast",
"https://www.twitch.tv/messages/*",
"https://www.twitch.tv/settings"
],
"run_at": "document_end"
}
],
"permissions": [
"activeTab"
],
"web_accessible_resources": [
"data/conf.json"
]
}