NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Load global.js in chat // @version 0.1 // @updateURL https://openuserjs.org/meta/LunarTwilight/Load_global.js_in_chat.meta.js // @description Since Wikia does not do this, load your global.js in chat. // @author Sophiedp (http://central.wikia.com/wiki/User:Sophiedp) // @match http://*.wikia.com/wiki/* // @grant none // ==/UserScript== (function() { 'use strict'; if ( wgCanonicalSpecialPageName == 'Chat' ) { console.log("Global.js loaded in chat"); importScriptPage('User:' + wgUserName + '/global.js', 'central'); } })();