-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.json
29 lines (29 loc) · 919 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
{
"name": "RestrictImageDownload",
"version": "0.0.2",
"author": [
"Yoshihiro Okumura"
],
"url": "https://github.com/neuroinformatics/mediawiki-extensions-RestrictImageDownload",
"description": "Restrict image file download",
"license-name": "MIT",
"requires": {
"MediaWiki": ">= 1.39.0"
},
"type": "other",
"config": {
"RestrictImageFiles": {
"value": [],
"merge_strategy": "provide_default"
}
},
"AutoloadNamespaces": {
"MediaWiki\\Extension\\RestrictImageDownload\\": "includes/"
},
"Hooks": {
"ThumbnailBeforeProduceHTML": "MediaWiki\\Extension\\RestrictImageDownload\\Hooks::onThumbnailBeforeProduceHTML",
"LinkerMakeMediaLinkFile": "MediaWiki\\Extension\\RestrictImageDownload\\Hooks::onLinkerMakeMediaLinkFile",
"BeforePageDisplay": "MediaWiki\\Extension\\RestrictImageDownload\\Hooks::onBeforePageDisplay"
},
"manifest_version": 2
}