You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Userscripts are not loaded on Special:Preferences for security reasons, so the configuration does not work 😢 But custom settings could logically be set directly in common.js before loading the Wiki Monkey script.
jQuery is already (and always) loaded by MediaWiki, so it does not have to be put in the bundle.
The top-level check if (location.href.match(/^https:\/\/wiki\.archlinux\.org/i)) { ... } is useless for a MediaWiki userscript and hinders testing on localhost.
Let this be the MediaWiki userscript support meta-issue 😆
The standalone version actually works, but...
But custom settings could logically be set directly in
common.jsbefore loading the Wiki Monkey script.if (location.href.match(/^https:\/\/wiki\.archlinux\.org/i)) { ... }is useless for a MediaWiki userscript and hinders testing on localhost.