ProgrammaticalCSS/extension.json
2024-07-04 18:04:14 +02:00

32 lines
859 B
JSON

{
"name": "ProgrammaticalCSS",
"author": "Samuel Maenle",
"url": "https://git.maenle.net/diocloid/ProgrammaticalCSS",
"description": "This MediaWiki extension loads CSS based on authentication of user",
"type": "parserhook",
"version": "1.0",
"license-name": "AGPL-3.0-only",
"manifest_version": 2,
"AutoloadClasses": {
"ProgrammaticalCSSHooks": "includes/ProgrammaticalCSSHooks.php"
},
"Hooks": {
"BeforePageDisplay": [
"ProgrammaticalCSSHooks::onBeforePageDisplay"
]
},
"ResourceModules": {
"ext.programmaticalcss": {
"styles": [
"/resources/ext.ProgrammaticalCSS.css"
],
"position": "top"
}
},
"ResourceFileModulePaths": {
"localBasePath": "",
"remoteExtPath": "ProgrammaticalCSS"
}
}