-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
72 lines (72 loc) · 1.64 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "Survivio+",
"version": "1.0.0",
"description": "Mod by DavidsCoding (iBLiSSIN)",
"permissions": [
"tabs",
"storage",
"*://*/*",
"declarativeContent",
"webRequest",
"webRequestBlocking"
],
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"externally_connectable": {
"matches": [
"*://*.surviv.io/*",
"*://*.ptr.surviv.io/*",
"*://*.surviv2.io/",
"*://*.2dbattleroyale.com/",
"*://*.2dbattleroyale.org/",
"*://*.piearesquared.info/",
"*://*.thecircleisclosing.com/",
"*://*.parmainitiative.com/",
"*://*.c79geyxwmp1zpas3qxbddzrtytffta.ext-twitch.tv/c79geyxwmp1zpas3qxbddzrtytffta/1.0.2/ce940530af57d2615ac39c266fe9679d/index_twitch.html"
]
},
"browser_action": {
"default_title": "Survivio+",
"default_icon": "128.png"
},
"icons": {
"16": "16.png",
"48": "48.png",
"128": "128.png"
},
"web_accessible_resources": [
"payload/glitchLogo.css",
"third_party/jquery-3.3.1.min.js",
"webpack_override.js"
],
"content_scripts": [
{
"matches": [
"*://surviv.io/*",
"*://*.ptr.surviv.io/*",
"*://surviv2.io/",
"*://2dbattleroyale.com/",
"*://2dbattleroyale.org/",
"*://piearesquared.info/",
"*://thecircleisclosing.com/",
"*://*.parmainitiative.com/",
"*://*.twitch.tv/popout/survivio/extensions/c79geyxwmp1zpas3qxbddzrtytffta/panel"
],
"js": [
"start.js"
],
"css": [
"payload/glitchLogo.css",
"payload/menu.css",
"payload/disableButtons.css"
],
"run_at": "document_start"
}
],
"manifest_version": 2,
"content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'"
}