-
Notifications
You must be signed in to change notification settings - Fork 3
/
extension.json
47 lines (47 loc) · 928 Bytes
/
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
{
"name": "HideSection",
"version": "3.0",
"author": "Brent Laabs",
"url": "//mediawiki.org/wiki/Extension:HideSection",
"descriptionmsg": "hidesection-desc",
"MessagesDirs": {
"HideSection": [
"i18n"
]
},
"AutoloadClasses": {
"HideSectionHooks": "HideSection.hooks.php"
},
"Hooks": {
"BeforePageDisplay": [
"HideSectionHooks::onBeforePageDisplay"
],
"SkinEditSectionLinks": [
"HideSectionHooks::onSkinEditSectionLinks"
]
},
"config": {
"HideSectionTitleLink": false,
"HideSectionHideText": false
},
"ResourceModules": {
"ext.hideSection": {
"scripts": [
"ext.hidesection.js"
],
"styles": [
"ext.hidesection.css"
],
"messages": [
"hidesection-showall",
"hidesection-hideall",
"hidesection-hidealltitle"
]
}
},
"ResourceFileModulePaths": {
"localBasePath": "resources",
"remoteExtPath": "HideSection/resources"
},
"manifest_version": 1
}