-
Notifications
You must be signed in to change notification settings - Fork 10
/
manifest.json
63 lines (63 loc) · 1.67 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
{
"name": "FoEI",
"version": "0.7.0",
"description": "Forge of Empires Inspector",
"permissions": [
"activeTab",
"declarativeContent",
"storage"
],
"background": {
"scripts": [
"background/consts.js",
"background/storage.js",
"background/utils.js",
"background/main.js",
"background/battle_field.js",
"background/city_map.js",
"background/clan_battle.js",
"background/great_buildings.js",
"background/hidden_reward.js",
"background/other_player.js",
"background/resource.js",
"background/static_data.js",
"background/startup.js"
],
"persistent": false
},
"externally_connectable": {
"matches": [
"https://*.forgeofempires.com/game/*"
]
},
"content_scripts": [
{
"matches": [
"https://*.forgeofempires.com/game/*"
],
"js": [
"inject.js"
]
}
],
"content_security_policy": "script-src 'self' https://code.jquery.com/ https://cdnjs.cloudflare.com/ajax/libs/moment.js/ https://cdnjs.cloudflare.com/ajax/libs/popper.js/ https://cdnjs.cloudflare.com/ajax/libs/FileSaver.js/ https://stackpath.bootstrapcdn.com/; object-src 'self'",
"web_accessible_resources": [
"ajax_inspect.js"
],
"options_page": "options.html",
"page_action": {
"default_icon": {
"16": "images/get_started16.png",
"32": "images/get_started32.png",
"48": "images/get_started48.png",
"128": "images/get_started128.png"
}
},
"icons": {
"16": "images/get_started16.png",
"32": "images/get_started32.png",
"48": "images/get_started48.png",
"128": "images/get_started128.png"
},
"manifest_version": 2
}