-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
26 lines (23 loc) · 1.53 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
{
// Required
"name": "OGame Cargo Room Calculator",
"version": "0",
"manifest_version": 2,
// Recommended
"description": "A chrome extension made for ogame (an onligne game) and supposed to calculate the number of cargo necessary to all the ressources on a given planet",
//"icons": { ... },
// Pick one (or none)
//"app": {...},
// Add any of these that you need
"content_scripts": [ {
"css": [ "CargoRoomCalculator.css" ],
"js": [ "CargoRoomCalculator.js" ],
"matches": [ "http://*.ogame.com.ar/game/*", "http://*.ogame.com.br/game/*", "http://*.ogame.com.hr/game/*", "http://*.ogame.cz/game/*", "http://*.ogame.dk/game/*", "http://*.fi.ogame.org/game/*", "http://*.ogame.fr/game/*", "http://*.ogame.de/game/*", "http://*.ogame.gr/game/*", "http://*.ogame.hu/game/*", "http://*.ogame.it/game/*", "http://*.ogame.jp/game/*", "http://*.mx.ogame.org/game/*", "http://*.ogame.nl/game/*", "http://*.ogame.no/game/*", "http://*.ogame.pl/game/*", "http://*.ogame.com.pt/game/*", "http://*.ogame.ro/game/*", "http://*.ogame.ru/game/*", "http://*.ogame.sk/game/*", "http://*.ogame.si/game/*", "http://*.ogame.com.es/game/*", "http://*.ogame.se/game/*", "http://*.ogame.tw/game/*", "http://*.tr.ogame.org/game/*", "http://*.ae.ogame.org/game/*", "http://*.ogame.org/game/*", "http://*.ogame.us/game/*" ]
} ],
"key": "kambnjgnongccijmhllkidjdnfndjigc",
"offline_enabled": true,
/* "permissions": [
match pattern
]*/
"web_accessible_resources": [ "*" ]
}