-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextension.json
More file actions
63 lines (63 loc) · 1.57 KB
/
extension.json
File metadata and controls
63 lines (63 loc) · 1.57 KB
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
{
"name": "GoogleKnowledgeGraph",
"version": "0.1.0",
"author": [
"[https://www.mediawiki.org/wiki/User:Urfiner Urfiner]"
],
"url": "https://www.mediawiki.org/wiki/Extension:GoogleKnowledgeGraph",
"descriptionmsg": "googleknowledgegraph-description",
"license-name": "MIT",
"type": "parserhook",
"requires": {
"MediaWiki": ">= 1.29.0"
},
"MessagesDirs": {
"GoogleKnowledgeGraph": [
"i18n"
]
},
"AutoloadClasses": {
"GoogleKnowledgeGraphHooks": "includes/GoogleKnowledgeGraph.hooks.php",
"ApiAskGoogleKnowledgeGraph": "includes/ApiAskGoogleKnowledgeGraph.php"
},
"APIModules": {
"askgoogleknowledgegraph": "ApiAskGoogleKnowledgeGraph"
},
"Hooks": {
"ParserFirstCallInit": "GoogleKnowledgeGraphHooks::onParserSetup"
},
"ResourceFileModulePaths": {
"localBasePath": "modules",
"remoteExtPath": "GoogleKnowledgeGraph/modules"
},
"ResourceModules": {
"ext.GoogleKnowledgeGraph": {
"localBasePath": "modules/ext.GoogleKnowledgeGraph",
"remoteExtPath": "GoogleKnowledgeGraph/modules/ext.GoogleKnowledgeGraph",
"scripts": [
"ext.GoogleKnowledgeGraph.js"
],
"styles": [
"ext.GoogleKnowledgeGraph.css"
]
}
},
"config": {
"GoogleApiLanguage": {
"value": "en",
"path": false,
"description": "In which language you want to get result from the Knowledge Graph",
"public": true
},
"GoogleApiToken": {
"value": "",
"path": false,
"description": "API token to be used with Google API",
"public": false
}
},
"ConfigRegistry": {
"GoogleKnowledgeGraph": "GlobalVarConfig::newInstance"
},
"manifest_version": 2
}