-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
31 lines (31 loc) · 835 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
{
"manifest_version": 2,
"name": "GamersClub Lobby Scanner",
"description": "Extensão para o Google Chrome que auxilia na escolha de lobbys melhores para jogar dentro da plataforma da GamersClub.",
"version": "1.0.0",
"icons": {
"16": "icons/icon_16.png",
"48": "icons/icon_48.png",
"128": "icons/icon_128.png"
},
"options_page": "options.html",
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"permissions": [
"https://gamersclub.com.br/",
"https://api.steampowered.com/",
"storage"
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["*://*.gamersclub.com.br/*"],
"js": ["main.js"]
}
]
}