-
Notifications
You must be signed in to change notification settings - Fork 1
/
extension.json
66 lines (66 loc) · 1.24 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
58
59
60
61
62
63
64
65
66
{
"name": "Google AdSense",
"namemsg": "googleadsense-extensionname",
"version": "3.0.0",
"author": [
"Siebrand Mazeland",
"Zoranzoki21"
],
"url": "https://www.mediawiki.org/wiki/Extension:Google_AdSense",
"descriptionmsg": "googleadsense-desc",
"license-name": "MIT",
"type": "other",
"requires": {
"MediaWiki": ">= 1.29.0"
},
"MessagesDirs": {
"GoogleAdSense": [
"i18n"
]
},
"AutoloadClasses": {
"GoogleAdSense": "src/GoogleAdSense.php"
},
"ResourceModules": {
"ext.googleadsense": {
"styles": "resources/ext.googleadsense.css"
}
},
"ResourceFileModulePaths": {
"localBasePath": "",
"remoteExtPath": "GoogleAdSense"
},
"Hooks": {
"SkinBuildSidebar": "GoogleAdSense::onSkinBuildSidebar"
},
"config": {
"GoogleAdSenseClient": {
"value": "none"
},
"GoogleAdSenseSlot": {
"value": "none"
},
"GoogleAdSenseID": {
"value": "none"
},
"GoogleAdSenseWidth": {
"value": 120
},
"GoogleAdSenseHeight": {
"value": 240
},
"GoogleAdSenseLang": {
"value": "en"
},
"GoogleAdSenseEncoding": {
"value": "utf8"
},
"GoogleAdSenseSrc": {
"value": "//pagead2.googlesyndication.com/pagead/show_ads.js"
},
"GoogleAdSenseAnonOnly": {
"value": false
}
},
"manifest_version": 2
}