-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathextension.json
52 lines (52 loc) · 1.1 KB
/
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
48
49
50
51
52
{
"name": "PDFEmbed",
"version": "3.0.1",
"author": [
"[https://www.mediawiki.org/wiki/User:Alexia_E._Smith Alexia E. Smith]",
"[http://www.bitplan.com/index.php/Wolfgang_Fahl Wolfgang Fahl/ProfiWiki]",
"[http://hexmode.com Mark A. Hershberger]",
"[https://clkoerner.com Chris Koerner]",
"[https://github.com/metalevel-tech Spas Z. Spasov]"
],
"url": "https://www.mediawiki.org/wiki/Extension:PDFEmbed",
"descriptionmsg": "pdfembed_description",
"license-name": "LGPL-3.0-only",
"requires": {
"MediaWiki": ">= 1.29.0"
},
"type": "parserhook",
"GroupPermissions": {
"sysop": {
"embed_pdf": true
}
},
"AvailableRights": [
"embed_pdf"
],
"MessagesDirs": {
"PDFEmbed": [
"i18n"
]
},
"AutoloadClasses": {
"PDFEmbed": "PDFEmbed.hooks.php",
"PDFHandler": "classes/PDFHandler.class.php"
},
"Hooks": {
"ParserFirstCallInit": "PDFEmbed::onParserFirstCallInit"
},
"FileExtensions": [
"pdf"
],
"config": {
"PdfEmbed": {
"width": 800,
"height": 1090,
"iframe": true
}
},
"TrackingCategories": [
"pdfembed-permission-problem-category"
],
"manifest_version": 1
}