forked from gamersclub-booster/gamersclub-booster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
58 lines (58 loc) · 1.78 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
{
"manifest_version": 2,
"name": "GamersClub Booster",
"description": "Extensão para o Google Chrome que adiciona algumas melhorias na plataforma da GamersClub.",
"version": "2.2.6",
"icons": {
"16": "images/icon_16.png",
"48": "images/icon_48.png",
"128": "images/icon_128.png"
},
"permissions": ["https://gamersclub.com.br/", "https://csgo.gamersclub.gg/", "storage"],
"content_scripts": [
{
"matches": ["*://*.gamersclub.com.br/*", "*://csgo.gamersclub.gg/*"],
"js": ["content-scripts/main.js"],
"run_at": "document_end"
},
{
"matches": ["*://*.gamersclub.com.br/minhas-partidas*", "*://csgo.gamersclub.gg/minhas-partidas*"],
"js": ["content-scripts/my-matches.js"],
"run_at": "document_end"
},
{
"matches": ["*://*.gamersclub.com.br/team/matches/*", "*://csgo.gamersclub.gg/team/matches/*"],
"js": ["content-scripts/team.js"],
"run_at": "document_end"
},
{
"matches": ["*://*.gamersclub.com.br/lobby*", "*://csgo.gamersclub.gg/lobby*"],
"js": ["content-scripts/lobby.js"],
"run_at": "document_end"
},
{
"matches": ["*://*.gamersclub.com.br/jogador*", "*://csgo.gamersclub.gg/jogador*"],
"js": ["content-scripts/profile.js"],
"run_at": "document_end"
},
{
"matches": ["*://*.gamersclub.com.br/missoes*", "*://csgo.gamersclub.gg/missoes*"],
"js": ["content-scripts/missions.js"],
"run_at": "document_end"
}
],
"options_page": "index.html",
"options_ui": {
"page": "index.html"
},
"browser_action": {
"default_icon": {
"16": "images/icon_16.png",
"48": "images/icon_48.png",
"128": "images/icon_128.png"
},
"default_popup": "index.html",
"browser_style": true,
"chrome_style": true
}
}