-
Notifications
You must be signed in to change notification settings - Fork 5
/
extension.json
57 lines (57 loc) · 1.4 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
{
"name": "GTag",
"namemsg": "gtag-extensionname",
"version": "1.3.0",
"author": [
"Ryan Schmidt"
],
"url": "https://mwusers.org/files/file/4-gtag/",
"license-name": "MIT",
"descriptionmsg": "gtag-desc",
"type": "other",
"config": {
"GTagAnalyticsId": {
"value": "",
"description": "Google Analytics account ID (UA-xxxxxxxx-x or G-xxxxxxxx)",
"decriptionmsg": "gtag-config-analyticsid"
},
"GTagAnonymizeIP": {
"value": false,
"description": "Anonymize IP addresses sent to Google Analytics",
"descriptionmsg": "gtag-config-anonymizeip"
},
"GTagEnableTCF": {
"value": false,
"description": "Enable support for the IAB Transparency & Consent Framework",
"descriptionmsg": "gtag-config-enabletcf"
},
"GTagHonorDNT": {
"value": true,
"description": "Honor the DNT header indicating a user does not wish to be tracked",
"decriptionmsg": "gtag-config-honordnt"
},
"GTagTrackSensitivePages": {
"value": true,
"description": "Include tracking code on potentially sensitive pages such as UserLogin and Preferences",
"decriptionmsg": "gtag-config-tracksensitivepages"
}
},
"Hooks": {
"BeforePageDisplay": "GTagHooks::onBeforePageDisplay"
},
"AvailableRights": [
"gtag-exempt"
],
"MessagesDirs": {
"GTag": [
"i18n"
]
},
"AutoloadClasses": {
"GTagHooks": "GTagHooks.php"
},
"requires": {
"MediaWiki": ">= 1.35.0"
},
"manifest_version": 2
}