-
Notifications
You must be signed in to change notification settings - Fork 1
/
extension.json
75 lines (75 loc) · 1.63 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": "AsteroidOS",
"author": [
"Darrel Griët",
"Pierre Schmitz"
],
"url": "https://asteroidos.org/",
"description": "AsteroidOS navigation and styles",
"license-name": "GPL-2.0+",
"type": "skin",
"AutoloadClasses": {
"MediaWiki\\Extensions\\AsteroidOS\\Hooks": "AsteroidOS.hooks.php"
},
"Hooks": {
"BeforePageDisplay": [
"MediaWiki\\Extensions\\AsteroidOS\\Hooks::onBeforePageDisplay"
],
"AfterFinalPageOutput": [
"MediaWiki\\Extensions\\AsteroidOS\\Hooks::onAfterFinalPageOutput"
]
},
"ResourceModules": {
"zzz.ext.AsteroidOS.scripts": {
"targets": [
"mobile",
"desktop"
],
"scripts": [
"js/jquery-1.10.2.min.js",
"js/bootstrap.min.js",
"js/holder.min.js",
"js/application.js"
]
},
"zzz.ext.AsteroidOS.styles": {
"targets": [
"mobile",
"desktop"
],
"styles": [
"index.less",
"aosnavbar/aosnavbar.less",
"aosnavbar/responsive.less"
],
"skinStyles": {
"vector": "skins/vector.less",
"vector-2022": "skins/vector.less",
"monobook": "skins/monobook.less"
},
"position": "top"
}
},
"ResourceFileModulePaths": {
"localBasePath": "modules",
"remoteExtPath": "AsteroidOS/modules"
},
"ConfigRegistry": {
"asteroidos": "GlobalVarConfig::newInstance"
},
"config": {
"AOSNavBar": {
"value": []
},
"AOSHome": {
"value": ""
},
"AOSNavBarSelected": {
"value": []
},
"AOSNavBarSelectedDefault": {
"value": ""
}
},
"manifest_version": 2
}