-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.json
79 lines (79 loc) · 1.87 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
76
77
78
79
{
"name": "Streamer",
"version": "0.5.0",
"author": [
"Wiki Platform Team",
"Curse Inc.",
"Alexia E. Smith"
],
"url": "http://www.mediawiki.org/wiki/Extension:Streamer",
"descriptionmsg": "streamer_description",
"type": "parserhook",
"requires": {
"MediaWiki": ">= 1.31.0"
},
"AvailableRights": [
"edit_streamer_info"
],
"GroupPermissions": {
"sysop": {
"edit_streamer_info": true
}
},
"SpecialPages": {
"StreamerInfo": "SpecialStreamerInfo"
},
"MessagesDirs": {
"Streamer": [
"i18n"
]
},
"ExtensionMessagesFiles": {
"StreamerMagic": "Streamer.i18n.magic.php"
},
"AutoloadClasses": {
"StreamerHooks": "Streamer.hooks.php",
"ApiStreamerBase": "classes/api/ApiStreamerBase.php",
"ApiAzubu": "classes/api/ApiAzubu.php",
"ApiBeam": "classes/api/ApiBeam.php",
"ApiHitbox": "classes/api/ApiHitbox.php",
"ApiTwitch": "classes/api/ApiTwitch.php",
"ApiYoutube": "classes/api/ApiYoutube.php",
"StreamerTemplate": "classes/StreamerTemplate.php",
"StreamerInfo": "classes/StreamerInfo.php",
"SpecialStreamerInfo": "specials/SpecialStreamerInfo.php",
"TemplateStreamerInfo": "templates/TemplateStreamerInfo.php"
},
"ResourceModules": {
"ext.streamer": {
"styles": [
"css/streamer.css"
],
"position": "top"
}
},
"ResourceFileModulePaths": {
"localBasePath": "",
"remoteExtPath": "Streamer"
},
"Hooks": {
"ParserFirstCallInit": "StreamerHooks::onParserFirstCallInit",
"PageContentSaveComplete": "StreamerHooks::onPageContentSaveComplete",
"LoadExtensionSchemaUpdates": "StreamerHooks::onLoadExtensionSchemaUpdates"
},
"config": {
"YouTubeApiKey": {
"value": null,
"path": false,
"descriptionmsg": "streamer-config-youtubeapikey",
"public": false
},
"TwitchClientId": {
"value": null,
"path": false,
"descriptionmsg": "streamer-config-twitchclientid",
"public": false
}
},
"manifest_version": 2
}