-
Notifications
You must be signed in to change notification settings - Fork 184
/
manifest.json
68 lines (60 loc) · 1.21 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
{
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"default_locale": "en",
"version": "3.9.0.0",
"manifest_version": 3,
"permissions": [
"alarms",
"storage",
"tabs",
"notifications",
"clipboardWrite"
],
"host_permissions": [
"https://*.forgeofempires.com/*",
"https://foe-helper.com/*",
"https://*.foe-helper.com/*",
"https://*.foe-rechner.de/*"
],
"action": {
"default_icon": "images/app16.png",
"default_popup": "content/popup.html",
"default_title": "__MSG_appName__"
},
"icons": {
"16": "images/app16.png",
"48": "images/app48.png",
"128": "images/app128.png"
},
"web_accessible_resources": [
{
"resources": [
"js/*",
"vendor/*",
"css/*",
"content/*"
],
"matches": [ "https://*/*" ]
}
],
"content_scripts": [
{
"matches": ["https://*.forgeofempires.com/*"],
"include_globs": [ "*forgeofempires.com/game*" ],
"run_at": "document_start",
"js": [
"vendor/browser-polyfill/browser-polyfill.min.js",
"js/web/_languages/js/_languages.js",
"js/inject.js"
]
}
],
"externally_connectable" : {
"matches": ["https://*.forgeofempires.com/*"],
"ids": ["*"]
},
"background": {
"service_worker": "background.js"
}
}