-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathextension.json
56 lines (56 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
{
"name": "PgnJS",
"version": "0.5.1",
"author": [
"Michaël Peeters"
],
"url": "http://www.mediawiki.org/wiki/Extension:PgnJS",
"description": "Display chess games (boards and moves) in PGN format interactively",
"license-name": "Apache-2.0",
"type": "parserhook",
"AutoloadClasses": {
"PgnJSHooks": "PgnJS.hooks.php"
},
"Hooks": {
"ParserFirstCallInit": [
"PgnJSHooks::onParserFirstCallInit"
],
"GetPreferences": [
"PgnJSHooks::onGetPreferences"
]
},
"MessagesDirs": {
"PgnJS": [
"i18n"
]
},
"ResourceModules": {
"ext.PgnJS": {
"scripts": [
"PgnViewerJS/js/jquery-ui.js",
"PgnViewerJS/chess.js/chess.js",
"PgnViewerJS/chessboardjs/js/chessboard.js",
"PgnViewerJS/chessboardjs/js/json3.min.js",
"PgnViewerJS/js/mousetrap.js",
"PgnViewerJS/js/jquery.multiselect.js",
"PgnViewerJS/js/jquery.timer.js",
"PgnViewerJS/js/pgn.js",
"PgnViewerJS/js/pgn-parser.js",
"PgnViewerJS/js/pgnvjs.js",
"PgnViewerJS/js/i18next-1.11.2.js",
"modules/ext.PgnJS.js"
],
"styles": [
"PgnViewerJS/dist/css/pgnvjs.css",
"modules/ext.PgnJS.css"
],
"position": "top",
"messages": []
}
},
"ResourceFileModulePaths": {
"localBasePath": "",
"remoteExtPath": "PgnJS"
},
"manifest_version": 1
}