-
Notifications
You must be signed in to change notification settings - Fork 3
/
extension.json
60 lines (60 loc) · 1.21 KB
/
extension.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
{
"name": "Card Hover",
"version": "1.5.0",
"author": [
"PhiLtheFisH",
"[https://fo-nttax.de Alex Winkler]"
],
"url": "https://liquipedia.net",
"descriptionmsg": "cardhover-desc",
"license-name": "MIT",
"type": "parserhook",
"requires": {
"MediaWiki": ">= 1.35.0"
},
"MessagesDirs": {
"CardHover": [
"i18n"
]
},
"AutoloadNamespaces": {
"Liquipedia\\Extension\\CardHover\\": "src/"
},
"HookHandlers": {
"Main": {
"class": "\\Liquipedia\\Extension\\CardHover\\Hooks\\MainHookHandler"
}
},
"Hooks": {
"BeforePageDisplay": "Main",
"HtmlPageLinkRendererBegin": "Main",
"ThumbnailBeforeProduceHTML": "Main"
},
"ResourceModules": {
"ext.cardHover": {
"scripts": [
"resources/scripts/CardHover.js"
],
"styles": [
"resources/styles/CardHover.css"
],
"position": "bottom"
}
},
"ResourceFileModulePaths": {
"localBasePath": "",
"remoteExtPath": "CardHover"
},
"config": {
"CardHoverWhitelistedPages": {
"value": [
"RuneterraDeck"
],
"path": false,
"description": "List of special pages that are whitelisted for card hover",
"descriptionmsg": "cardhover-config-cardhoverwhitelistedpages-desc",
"public": true
}
},
"manifest_version": 2
}