-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
100 lines (100 loc) · 1.84 KB
/
Copy pathmanifest.json
File metadata and controls
100 lines (100 loc) · 1.84 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"minimum_chrome_version": "92",
"name": "Alternate Player for Twitch.tv",
"short_name": "Alternate Player",
"version": "2025.5.28",
"description": "__MSG_M0001__",
"icons": {
"128": "manifest.png"
},
"author": "Alexander Choporov (CoolCmd)",
"default_locale": "en",
"incognito": "split",
"permissions": [
"storage",
"cookies",
"management",
"system.memory",
"system.cpu",
"declarativeNetRequest"
],
"host_permissions": [
"*://*.twitch.tv/*",
"*://*.twitchcdn.net/*",
"*://*.ttvnw.net/*",
"*://*.jtvnw.net/*",
"*://*.live-video.net/*",
"*://*.akamaized.net/*",
"*://*.cloudfront.net/*"
],
"background": {
"service_worker": "background.js"
},
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
},
"content_scripts": [
{
"matches": [
"https://www.twitch.tv/*"
],
"exclude_matches": [
"https://www.twitch.tv/popout/"
],
"js": [
"autoclaim.js"
],
"all_frames": true,
"run_at": "document_idle"
},
{
"matches": [
"https://www.twitch.tv/*"
],
"js": [
"gqltoken.js"
],
"all_frames": true,
"run_at": "document_start"
},
{
"matches": [
"https://www.twitch.tv/*",
"https://m.twitch.tv/*"
],
"exclude_matches": [
"https://www.twitch.tv/popout/"
],
"js": [
"common.js",
"content.js"
],
"all_frames": true,
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"player.html",
"content.css",
"gql_injection.js",
"content_injection.js"
],
"matches": [
"https://*.twitch.tv/*"
]
}
],
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset_1",
"enabled": true,
"path": "rules.json"
}
]
}
}