forked from marohh/mediawikiRemoveRedlinks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextension.json
More file actions
30 lines (30 loc) · 847 Bytes
/
extension.json
File metadata and controls
30 lines (30 loc) · 847 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
{
"name": "RemoveRedlinks",
"version": "1.1.0",
"author": ["Malte Ahrholdt", "Collei"],
"license-name": "GPL-2.0-or-later",
"url": "https://www.mediawiki.org/wiki/Extension:RemoveRedlinks",
"descriptionmsg": "removeredlinks-desc",
"type": "parser",
"requires": {
"MediaWiki": ">= 1.39.0"
},
"MessagesDirs": {
"RemoveRedlinks": ["i18n"]
},
"AutoloadClasses": {
"RemoveRedlinks": "includes/RemoveRedlinks.php"
},
"Hooks": {
"HtmlPageLinkRendererEnd": "RemoveRedlinks::onHtmlPageLinkRendererEnd",
"ParserOptionsRegister": "RemoveRedlinks::onParserOptionsRegister"
},
"config_prefix": "wg",
"config": {
"RemoveRedLinksAlsoLoggedInUsers": {
"value": false,
"description": "Remove red links also for logged-in users, instead of only for unregistered users"
}
},
"manifest_version": 1
}