forked from ogame-infinity/web-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
36 lines (32 loc) · 846 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
32
33
34
35
36
{
"name": "Ogame Infinity",
"version": "1",
"manifest_version": 2,
"description": "OGI - To Ogame's infinity and beyond!",
"homepage_url": "https://ogameinfinity.com",
"content_scripts": [
{
"matches": ["https://*.ogame.gameforge.com/game/*"],
"js": ["main.js"],
"css": ["global.css"],
"run_at": "document_start"
}
],
"web_accessible_resources": ["ogkush.js", "libs/*", "res/*", "util/*"],
"browser_action": {
"default_title": "Ogame Infinity",
"default_icon": {
"32": "res/logo128.png"
}
},
"icons": {
"32": "res/logo128.png",
"128": "res/logo128.png",
"256": "res/logo512.png",
"512": "res/logo512.png"
},
"permissions": ["storage", "https://*.ogame.gameforge.com/game/*", "notifications"],
"background": {
"scripts": ["background.js"]
}
}