-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
56 lines (56 loc) · 1.29 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
{
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"default_locale": "fr",
"version": "2.5.0",
"manifest_version": 3,
"author": "TC-Dev",
"permissions": ["storage"],
"icons": {
"16": "/images/icon-16x16.png",
"32": "/images/icon-32x32.png",
"48": "/images/icon-48x48.png",
"128": "/images/icon-128x128.png"
},
"web_accessible_resources": [
{
"resources": ["images/male.png", "images/female.png", "images/gelding.png"],
"matches": [
"*://*.equideow.com/*",
"*://*.howrse.com/*",
"*://*.howrse.no/*",
"*://*.howrse.co.uk/*",
"*://*.caballow.com/*",
"*://*.howrse.pl/*",
"*://*.howrse.de/*"
]
}
],
"action": {
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*://*.equideow.com/*",
"*://*.howrse.com/*",
"*://*.howrse.no/*",
"*://*.howrse.co.uk/*",
"*://*.caballow.com/*",
"*://*.howrse.pl/*",
"*://*.howrse.de/*"
],
"run_at": "document_end",
"js": [
"translation.js",
"loadingDisplayObserver.js",
"moreInfos.js",
"competitionRatio.js",
"foodSelect.js"
]
}
]
}