forked from SkizNet/mediawiki-GTag
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextension.json
More file actions
65 lines (65 loc) · 1.52 KB
/
Copy pathextension.json
File metadata and controls
65 lines (65 loc) · 1.52 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
64
65
{
"name": "GTag",
"namemsg": "gtag-extensionname",
"version": "1.4.0",
"author": [
"Ryan Schmidt"
],
"url": "https://www.mediawiki.org/wiki/Extension:GTag",
"license-name": "MIT",
"descriptionmsg": "gtag-desc",
"type": "other",
"config": {
"GTagAnalyticsId": {
"value": "",
"description": "Google Analytics account ID (GT-xxxxxxx or GTM-xxxxxxx)",
"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": false,
"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"
}
},
"HookHandlers": {
"main": {
"class": "MediaWiki\\Extension\\GTag\\Hooks",
"services": [
"PermissionManager"
]
}
},
"Hooks": {
"BeforePageDisplay": "main"
},
"AvailableRights": [
"gtag-exempt"
],
"MessagesDirs": {
"GTag": [
"i18n"
]
},
"AutoloadNamespaces": {
"MediaWiki\\Extension\\GTag\\": "src/"
},
"requires": {
"MediaWiki": ">= 1.43.0"
},
"manifest_version": 2
}