NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Quasar RedShift // @version 1.0.3 // @description Quasar RedShift // @include http*://*.tribalwars.*/game.php?*mode=awards* // @copyright 2014+, Wesley Nascimento // @author Wesley Nascimento // ==/UserScript== //Self Execute function. (function () { "use strict"; //Temp host var host = "https://preview.c9.io/sorrisosrs/quasarredshift/built/"; $("head").prepend('<link id="redshift_css" rel="stylesheet" href="' + host + "quasar-redshift.min.css" + '" />'); $.getScript( host + "quasar-redshift.js", function(){ var controller = new PluginController(); controller.run(); controller.paint(); }); }());