-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathextension.json
More file actions
69 lines (69 loc) · 1.3 KB
/
extension.json
File metadata and controls
69 lines (69 loc) · 1.3 KB
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
{
"name": "InputBox",
"version": "0.3.0",
"author": [
"Erik Moeller",
"Leonardo Pimenta",
"Rob Church",
"Trevor Parscal",
"DaSch"
],
"url": "https://www.mediawiki.org/wiki/Extension:InputBox",
"descriptionmsg": "inputbox-desc",
"requires": {
"MediaWiki": ">= 1.47.0"
},
"license-name": "MIT",
"type": "parserhook",
"MessagesDirs": {
"InputBox": [
"i18n"
]
},
"AutoloadNamespaces": {
"MediaWiki\\Extension\\InputBox\\": "includes/"
},
"ResourceModules": {
"ext.inputBox": {
"packageFiles": [
"ext.inputBox.js"
]
},
"ext.inputBox.styles": {
"class": "MediaWiki\\ResourceLoader\\CodexModule",
"codexStyleOnly": true,
"codexComponents": [
"CdxButton",
"CdxCheckbox",
"CdxTextInput"
],
"styles": {
"ext.inputBox.styles.less": {
"media": "screen"
},
"ext.inputBox.print.less": {
"media": "print"
}
}
}
},
"ResourceFileModulePaths": {
"localBasePath": "resources",
"remoteExtPath": "InputBox/resources"
},
"Hooks": {
"ParserFirstCallInit": "main",
"MediaWikiPerformAction": "main",
"SpecialPageBeforeExecute": "main"
},
"HookHandlers": {
"main": {
"class": "MediaWiki\\Extension\\InputBox\\InputBoxHooks",
"services": [
"MainConfig",
"ExtensionRegistry"
]
}
},
"manifest_version": 2
}