-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.json
49 lines (49 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
{
"name": "CBX Handler",
"author": [
"Maysara Abdulhaq"
],
"url": "https://www.mediawiki.org/wiki/Extension:CbxHandler",
"descriptionmsg": "cbx-desc",
"license-name": "GPL-2.0-or-later",
"type": "media",
"requires": {
"MediaWiki": ">= 1.32.0"
},
"config": {
"CbxOutputExtension": "jpg",
"CbxHandlerDpi": 150,
"CbxCreateThumbnailsInJobQueue": false,
"CbxPostProcessor": "/usr/bin/convert",
"CbxHandlerJpegQuality": 95,
"CbxProcessor": "/usr/bin/cbx-extractor.sh",
"CbxInfo": "/usr/bin/cbx-info.sh"
},
"MessagesDirs": {
"CbxHandler": [
"i18n"
]
},
"Hooks": {
"UploadVerifyFile": [
"CreateCbxThumbnailsJob::insertJobs"
]
},
"JobClasses": {
"createCbxThumbnailsJob": "CreateCbxThumbnailsJob"
},
"MediaHandlers": {
"application/x-cbz": "CbxHandler",
"application/vnd.rar": "CbxHandler",
"application/vnd.comicbook-rar": "CbxHandler"
},
"AutoloadClasses": {
"CreateCbxThumbnailsJob": "includes/CreateCbxThumbnailsJob.php",
"CbxHandler": "includes/CbxHandler.php",
"CbxImage": "includes/CbxImage.php"
},
"FileExtensions": [
"cbr"
],
"manifest_version": 1
}