-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathextension.json
More file actions
31 lines (31 loc) · 880 Bytes
/
extension.json
File metadata and controls
31 lines (31 loc) · 880 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
{
"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,
"public": true,
"description": "Remove red links also for logged-in users, instead of only for unregistered users"
}
},
"manifest_version": 2
}