-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
46 lines (46 loc) · 865 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
42
43
44
45
46
{
"manifest_version": 2,
"name": "TTV-Tools",
"version": "0.5.7",
"description": "Common helpers when watching twitch",
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"run_at": "document_start",
"js": [
"content-script.js"
],
"matches": [
"*://*.twitch.tv/*"
]
}
],
"web_accessible_resources": [
"videos/*.ts",
"videos/*.m3u8",
"context-script.js",
"utilities-*.js"
],
"permissions": [
"*://*.ttvnw.net/*",
"*://*.twitch.tv/*",
"webRequest",
"webRequestBlocking",
"tabs",
"storage",
"cookies"
],
"options_ui": {
"page": "options/options.html"
},
"browser_specific_settings": {
"gecko": {
"id": "{00006da7-e50e-4479-83ad-49d97b5ad39d}",
"strict_min_version": "80.0"
}
}
}