-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathextension.json
47 lines (47 loc) · 1.2 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
{
"name": "Matomo",
"version": "5.0.0",
"author": [
"Isb1009",
"[http://www.daschmedia.de DaSch]",
"[https://www.mediawiki.org/wiki/User:Seb35 Seb35]",
"[https://github.com/YOUR1 Youri van den Bogert]"
],
"url": "https://www.mediawiki.org/wiki/Extension:Matomo",
"description": "Adding Matomo Tracking Code",
"license-name": "GPL-2.0-or-later",
"type": "other",
"requires": {
"MediaWiki": ">= 1.34.0"
},
"config": {
"MatomoIDSite": "",
"MatomoURL": "",
"MatomoIgnoreEditors": false,
"MatomoIgnoreSysops": true,
"MatomoIgnoreBots": true,
"MatomoCustomJS": "",
"MatomoUsePageTitle": false,
"MatomoActionName": "",
"MatomoDisableCookies": false,
"MatomoProtocol": "auto",
"MatomoUsernameCustomVariable": [],
"MatomoTrackUsernames": false,
"MatomoJSFileURL": null
},
"Hooks": {
"SkinAfterBottomScripts": [
"MediaWiki\\Extension\\Matomo\\Hooks::MatomoSetup"
],
"SpecialSearchResults": [
"MediaWiki\\Extension\\Matomo\\Hooks::onSpecialSearchResults"
],
"SpecialSearchSetupEngine": [
"MediaWiki\\Extension\\Matomo\\Hooks::onSpecialSearchSetupEngine"
]
},
"AutoloadClasses": {
"MediaWiki\\Extension\\Matomo\\Hooks": "src/Hooks.php"
},
"manifest_version": 1
}