-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.json
57 lines (57 loc) · 1.38 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
53
54
55
56
57
{
"name": "MultiCodeBlock",
"author": "QuickWrite",
"url": "https://github.com/QuickWrite/MultiCodeBlock",
"description": "Creates a codeblock consisting of multiple languages and a custom way of commenting the code.",
"version": "0.1.1",
"license-name": "Apache-2.0",
"type": "validextensionclass",
"manifest_version": 1,
"MessagesDirs": {
"MultiCodeBlock": [
"i18n"
]
},
"AutoloadClasses": {
"MultiCodeBlockHooks": "includes/hooks/MultiCodeBlockHooks.php"
},
"Hooks": {
"ParserFirstCallInit": "MultiCodeBlockHooks::onParserFirstCallInit"
},
"ResourceModules": {
"ext.multicodeblock.styles": {
"localBasePath": "resources/ext.multicodeblock/css",
"remoteExtPath": "MultiCodeBlock/resources/ext.multicodeblock/css",
"styles": [
"highlight.css",
"codeblock.css",
"selection.css"
],
"targets": [
"desktop",
"mobile"
]
},
"ext.multicodeblock.styles.mobile": {
"localBasePath": "resources/ext.multicodeblock/css/mobile",
"remoteExtPath": "MultiCodeBlock/resources/ext.multicodeblock/css/mobile",
"styles": [
"codeblock.css"
],
"targets": [
"mobile"
]
},
"ext.multicodeblock.js": {
"localBasePath": "resources/ext.multicodeblock/js",
"remoteExtPath": "MultiCodeBlock/resources/ext.multicodeblock/js",
"packageFiles": [
"multicodeblock.js"
],
"targets": [
"desktop",
"mobile"
]
}
}
}