summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/InputBox/extension.json
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/InputBox/extension.json')
-rw-r--r--www/wiki/extensions/InputBox/extension.json62
1 files changed, 62 insertions, 0 deletions
diff --git a/www/wiki/extensions/InputBox/extension.json b/www/wiki/extensions/InputBox/extension.json
new file mode 100644
index 00000000..f4cde3b6
--- /dev/null
+++ b/www/wiki/extensions/InputBox/extension.json
@@ -0,0 +1,62 @@
+{
+ "name": "InputBox",
+ "version": "0.3.0",
+ "author": [
+ "Erik Moeller",
+ "Leonardo Pimenta",
+ "Rob Church",
+ "Trevor Parscal",
+ "DaSch"
+ ],
+ "url": "https://www.mediawiki.org/wiki/Extension:InputBox",
+ "descriptionmsg": "inputbox-desc",
+ "requires": {
+ "MediaWiki": ">= 1.30.0"
+ },
+ "license-name": "MIT",
+ "type": "parserhook",
+ "MessagesDirs": {
+ "InputBox": [
+ "i18n"
+ ]
+ },
+ "AutoloadClasses": {
+ "InputBoxHooks": "includes/InputBoxHooks.php",
+ "InputBox": "includes/InputBox.php"
+ },
+ "ResourceModules": {
+ "ext.inputBox.styles": {
+ "styles": "ext.inputBox.styles.css",
+ "targets": [
+ "mobile",
+ "desktop"
+ ]
+ },
+ "ext.inputBox": {
+ "scripts": "ext.inputBox.js",
+ "dependencies": [
+ "jquery.throttle-debounce"
+ ],
+ "targets": [
+ "mobile",
+ "desktop"
+ ]
+ }
+ },
+ "ResourceFileModulePaths": {
+ "localBasePath": "resources",
+ "remoteExtPath": "InputBox/resources"
+ },
+ "Hooks": {
+ "ParserFirstCallInit": [
+ "InputBoxHooks::register"
+ ],
+ "MediaWikiPerformAction": [
+ "InputBoxHooks::onMediaWikiPerformAction"
+ ],
+ "SpecialPageBeforeExecute": [
+ "InputBoxHooks::onSpecialPageBeforeExecute"
+ ]
+ },
+ "manifest_version": 1
+}