-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.json
75 lines (74 loc) · 1.5 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "Reveal",
"version": "0.3.2",
"author": [
"Simon Stier",
"Alexander Triol"
],
"url": "https://github.com/OpenSemanticLab/mediawiki-extensions-Reveal",
"descriptionmsg": "reveal-desc",
"license-name": "AGPL v3",
"type": "other",
"requires": {
"MediaWiki": ">= 1.35",
"skins": {
"Timeless": "*"
}
},
"AutoloadClasses": {
"RevealHooks": "Reveal.hooks.php"
},
"config": {
"RevealEnableFoo": true
},
"ExtensionMessagesFiles": {
"RevealAlias": "Reveal.i18n.alias.php",
"RevealMagic": "Reveal.i18n.magic.php"
},
"Hooks": {
"ParserFirstCallInit": ["RevealHooks::onParserFirstCallInit"],
"BeforePageDisplay": ["RevealHooks::onBeforePageDisplay"],
"SidebarBeforeOutput": ["RevealHooks::onSidebarBeforeOutput"]
},
"MessagesDirs": {
"Reveal": [
"i18n"
]
},
"ResourceModules": {
"ext.reveal": {
"scripts": [
"modules/ext.reveal.js",
"modules/ext.reveal.foo.js"
],
"styles": [
"modules/ext.reveal.css"
],
"messages": [],
"dependencies": []
},
"ext.reveal.dist": {
"scripts": [
"modules/reveal/dist/reveal.js"
],
"styles": [
"modules/reveal/dist/reveal.css",
"modules/reveal/dist/theme/white.css"
]
},
"ext.reveal.plugin": {
"scripts": [
"modules/reveal/plugin/notes/notes.js",
"modules/reveal/plugin/search/search.js",
"modules/reveal/plugin/zoom/zoom.js"
]
}
},
"ResourceFileModulePaths": {
"localBasePath": "",
"remoteExtPath": "Reveal"
},
"SpecialPages": {
},
"manifest_version": 1
}