-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextension.json
More file actions
44 lines (44 loc) · 1014 Bytes
/
extension.json
File metadata and controls
44 lines (44 loc) · 1014 Bytes
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
{
"name": "CustomNameSpaceSidebar",
"author": [
"outofcontrol"
],
"url": "https://github.com/outofcontrol/mediawiki-extension-CustomNameSpaceSidebar",
"descriptionmsg": "Adds the ability to automatically add a custom menu to a NameSpace which has a page called NameSpaceSidebar",
"license-name": "MIT",
"type": "other",
"version": "1.0.1",
"requires": {
"MediaWiki": ">= 1.42.0"
},
"AutoloadNamespaces": {
"MediaWiki\\Extension\\CustomNameSpaceSidebar\\": "src/"
},
"HookHandlers": {
"CustomNameSpaceSidebarHooks": {
"class": "MediaWiki\\Extension\\CustomNameSpaceSidebar\\Hooks"
}
},
"Hooks": {
"SkinAfterPortlet": "CustomNameSpaceSidebarHooks"
},
"ResourceModules": {
"ext.customnamespace.sidebar": {
"localBasePath": "resources",
"remoteExtPath": "CustomNameSpaceSidebar/resources",
"styles": [
"sidebar.css"
],
"targets": [
"desktop",
"mobile"
]
}
},
"MessagesDirs": {
"CustomNameSpaceSidebar": [
"i18n"
]
},
"manifest_version": 2
}