-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
75 lines (75 loc) · 1.84 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
{
"manifest_version": 3,
"name": "Die-Ewigen Extension",
"version": "0.7.1",
"description": "Erweiterung für das Browsergame Die-Ewigen",
"icons": {
"48": "icons/border-48.png"
},
"permissions": ["scripting"],
"host_permissions": [
"*://sde.bgam.es/*",
"*://rde.bgam.es/*",
"*://xde.bgam.es/*",
"*://dde.bgam.es/*",
"*://ede.bgam.es/*",
"*://cde.bgam.es/*",
"*://bde.bgam.es/*"
],
"web_accessible_resources": [
{
"resources": [
"css/fields.css",
"icons/icons8-move-50.png",
"icons/tb_timedata.png",
"css/time.css",
"icons/flight.svg",
"css/trade.css",
"css/vanilla-context.min.css",
"content/info.html"
],
"matches": ["*://*.bgam.es/*"]
}
],
"content_scripts": [
{
"matches": [
"*://*.bgam.es/dm.php",
"*://*.bgam.es/sector.php*",
"*://*.bgam.es/production.php*",
"*://*.bgam.es/auction.php*",
"*://*.bgam.es/overview.php*",
"*://*.bgam.es/sysnews.php*",
"*://*.bgam.es/map_system.php*",
"*://*.bgam.es/ally_detail.php*",
"*://*.bgam.es/secret.php*",
"*://*.bgam.es/map_mobile.php*"
],
"js": [
"js/pages/de.js",
"js/utils/frame.js",
"js/utils/fields.js",
"js/utils/table.js",
"js/utils/storage.js",
"js/utils/time.js",
"js/utils/ContextMenu.js",
"js/pages/sek.js",
"js/pages/military.js",
"js/pages/secret.js",
"js/pages/production.js",
"js/pages/trade.js",
"js/pages/news.js",
"js/pages/ally.js",
"js/pages/overview.js",
"js/pages/vsys.js"
],
"css": [
"css/fields.css",
"css/trade.css",
"css/time.css"
],
"run_at": "document_start",
"all_frames": true
}
]
}