forked from kurtextrem/Twitch5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
49 lines (49 loc) · 938 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
47
48
49
{
"manifest_version": 2,
"minimum_chrome_version": "49",
"name": "Improved Player for Twitch",
"short_name": "Twitch 5",
"version": "2019.4.17",
"description": "__MSG_M0001__",
"author": "Alexander Choporov (CoolCmd), Jacob Groß",
"icons":
{
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"default_locale": "en",
"incognito": "split",
"optional_permissions": [ "contentSettings" ],
"permissions":
[
"storage",
"system.memory",
"system.cpu",
"management",
"webRequest",
"webRequestBlocking",
"*://*.twitch.tv/*", "*://*.ttvnw.net/*", "*://*.akamaized.net/*",
"cookies"
],
"web_accessible_resources":
[
"player.html",
"content.css"
],
"content_scripts":
[{
"matches":
[
"https://www.twitch.tv/*",
"https://m.twitch.tv/*"
],
"js":
[
"common.js", "content.js"
],
"all_frames": true,
"run_at": "document_start"
}]
}