-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
manifest.json
108 lines (108 loc) · 2.76 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
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
101
102
103
104
105
106
107
108
{
"manifest_version": 3,
"name": "GamersClub Booster",
"description": "Extensão para o Google Chrome que adiciona algumas melhorias na plataforma da GamersClub.",
"version": "2.64.0",
"icons": {
"16": "images/icon_16.png",
"48": "images/icon_48.png",
"128": "images/icon_128.png"
},
"host_permissions": [
"https://*gamersclub.com.br/",
"https://cs.gamersclub.gg/",
"https://discord.com/api/webhooks/*"
],
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": ["*://*.gamersclub.com.br/*", "*://cs.gamersclub.gg/*"],
"js": ["content-scripts/main.js"],
"css": ["content.css"],
"run_at": "document_end"
},
{
"matches": [
"*://*.gamersclub.com.br/minhas-partidas*",
"*://cs.gamersclub.gg/minhas-partidas*",
"*://*.gamersclub.com.br/my-matches*",
"*://cs.gamersclub.gg/my-matches*"
],
"js": ["content-scripts/my-matches.js"],
"run_at": "document_end"
},
{
"matches": [
"*://*.gamersclub.com.br/team/matches/*",
"*://cs.gamersclub.gg/team/matches/*"
],
"js": ["content-scripts/team.js"],
"run_at": "document_end"
},
{
"matches": [
"*://*.gamersclub.com.br/lobby*",
"*://cs.gamersclub.gg/lobby*",
"*://*.gamersclub.com.br/ranked*",
"*://cs.gamersclub.gg/ranked*",
"*://*.gamersclub.com.br/match*",
"*://cs.gamersclub.gg/match*",
"*://*.gamersclub.com.br/hub*",
"*://cs.gamersclub.gg/hub*"
],
"js": ["content-scripts/lobby.js"],
"run_at": "document_end"
},
{
"matches": [
"*://*.gamersclub.com.br/jogador*",
"*://cs.gamersclub.gg/jogador*",
"*://*.gamersclub.com.br/player*",
"*://cs.gamersclub.gg/player*"
],
"js": ["content-scripts/profile.js"],
"run_at": "document_end"
},
{
"matches": [
"*://*.gamersclub.com.br/missoes*",
"*://cs.gamersclub.gg/missoes*"
],
"js": ["content-scripts/missions.js"],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"images/discord.svg",
"events-listener.js",
"jquery-3.7.1.min.js"
],
"matches": [
"<all_urls>"
]
}
],
"options_ui": {
"page": "index.html"
},
"action": {
"default_icon": {
"16": "images/icon_16.png",
"48": "images/icon_48.png",
"128": "images/icon_128.png"
},
"default_popup": "index.html"
},
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval';object-src 'self';"
},
"browser_specific_settings": {
"gecko": {
"id": "{68a6744b-6d1e-4c85-83ad-637c9dc135b5}"
}
}
}