-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.chrome.json
131 lines (118 loc) · 3.18 KB
/
manifest.chrome.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"manifest_version": 3,
"name": "__MSG_extensionName__",
"short_name": "ENextension",
"version": "1.3.19",
"author": "Eugene Lapeko",
"default_locale": "ru",
"browser_specific_settings": {
"gecko": {
"id": "encx_extension@lapeko.info",
"strict_min_version": "109.0"
}
},
"icons": {
"16": "img/logo-16.png",
"32": "img/logo-32.png",
"48": "img/logo-48.png",
"96": "img/logo-96.png",
"128": "img/logo-128.png"
},
"description": "__MSG_extensionDescription__",
"permissions": ["storage", "scripting"],
"host_permissions": [
"*://*.en.cx/gameengines/encounter/play/*",
"*://*.encounter.cx/gameengines/encounter/play/*",
"*://*.encounter.ru/gameengines/encounter/play/*"
],
"web_accessible_resources": [
{
"resources": [ "img/*", "style/images/*", "audio/*" ],
"matches": ["<all_urls>"]
}
],
"options_ui": {
"page": "options/options.html"
},
"background": {
"service_worker": "background/service_worker.js"
},
"action": {
"default_title": "__MSG_extensionName__",
"default_popup": "page_action/page_action.html",
"default_icon": {
"16": "img/logo-16.png",
"32": "img/logo-32.png",
"48": "img/logo-48.png",
"96": "img/logo-96.png",
"128": "img/logo-128.png"
},
"show_matches": [
"*://*.en.cx/gameengines/encounter/play/*",
"*://*.encounter.cx/gameengines/encounter/play/*",
"*://*.encounter.ru/gameengines/encounter/play/*"
]
},
"content_scripts": [
{
"matches": [
"*://*.en.cx/gameengines/encounter/play/*",
"*://*.encounter.cx/gameengines/encounter/play/*",
"*://*.encounter.ru/gameengines/encounter/play/*"
],
"css": [
"style/jquery-ui.css",
"style/level-carousel.css",
"style/play.css",
"style/engine-override.css"
],
"js": [
"lib/jquery.js",
"lib/jquery-ui.js",
"scripts/common/util.js",
"scripts/common/local_database.js",
"scripts/common/templates.js",
"scripts/game/game_manager.js",
"scripts/game/game_storage.js",
"scripts/game/game_page_action.js",
"scripts/game/game_prepare.js",
"scripts/game/game_codes.js",
"scripts/game/game_level_list.js",
"scripts/game/game_task.js",
"scripts/game/game_hints.js",
"scripts/game/game_bonuses.js",
"scripts/game/game_messages.js",
"scripts/game/game_errors.js",
"scripts/game/en_game.js"
]
},
{
"all_frames": true,
"matches": [
"*://*.en.cx/LevelStat.aspx*",
"*://*.encounter.cx/LevelStat.aspx*",
"*://*.encounter.ru/LevelStat.aspx*"
],
"js": [
"scripts/levelstat_refresh.js"
]
},
{
"matches": [
"*://*.en.cx/PhotoGallery.aspx*",
"*://*.encounter.cx/PhotoGallery.aspx*",
"*://*.encounter.ru/PhotoGallery.aspx*"
],
"css": [
"style/fotorama.css",
"style/PhotoGallery.css"
],
"js": [
"lib/jquery.js",
"lib/fotorama.js",
"scripts/common/util.js",
"scripts/gallery/main.js"
]
}
]
}