-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathextension.json
59 lines (59 loc) · 1.56 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
{
"name": "Header Tabs",
"version": "2.3",
"author": [
"[http://www.sergeychernyshev.com Sergey Chernyshev]",
"Yaron Koren",
"[https://ofbeaton.com Finlay Beaton]",
"Priyanshu Varshney"
],
"url": "https://www.mediawiki.org/wiki/Extension:Header_Tabs",
"descriptionmsg": "headertabs-desc",
"license-name": "GPL-2.0-or-later",
"type": "parserhook",
"MessagesDirs": {
"HeaderTabs": [
"i18n"
]
},
"ExtensionMessagesFiles": {
"HeaderTabsMagic": "HeaderTabs.i18n.magic.php"
},
"AutoloadClasses": {
"HeaderTabsHooks": "includes/HeaderTabsHooks.php",
"HeaderTabs": "includes/HeaderTabs.php"
},
"ResourceModules": {
"ext.headertabs": {
"scripts": "js/ext.headertabs.core.js",
"styles": "css/ext.headertabs.core.css",
"dependencies": [
"oojs-ui-core",
"oojs-ui-widgets",
"oojs-ui-windows"
]
}
},
"ResourceFileModulePaths": {
"localBasePath": "resources",
"remoteExtPath": "HeaderTabs/resources"
},
"Hooks": {
"ParserFirstCallInit": "HeaderTabsHooks::registerParserFunctions",
"ParserAfterTidy": "HeaderTabsHooks::replaceFirstLevelHeaders",
"ResourceLoaderGetConfigVars": "HeaderTabsHooks::addConfigVarsToJS",
"EditPageGetDiffContent": "HeaderTabsHooks::onEditPageGetDiffContent",
"EditPageGetPreviewContent": "HeaderTabsHooks::onEditPageGetPreviewContent"
},
"config": {
"HeaderTabsRenderSingleTab": false,
"HeaderTabsAutomaticNamespaces": [],
"HeaderTabsDefaultFirstTab": false,
"HeaderTabsEditTabLink": true,
"HeaderTabsNoTabsInToc": false
},
"manifest_version": 1,
"requires": {
"MediaWiki": ">= 1.33"
}
}