Advertisement
Tw100

Project futuro, reativação

Aug 15th, 2018
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Quasar RedShift
  3. // @version 1.0.3
  4. // @description Quasar RedShift
  5. // @include http*://*.tribalwars.*/game.php?*mode=awards*
  6. // @copyright 2014+, Wesley Nascimento
  7. // @author Wesley Nascimento
  8. // ==/UserScript==
  9.  
  10. //Self Execute function.
  11. (function () {
  12. "use strict";
  13. //Temp host
  14. var host = "https://preview.c9.io/sorrisosrs/quasarredshift/built/";
  15.  
  16. $("head").prepend('<link id="redshift_css" rel="stylesheet" href="' + host + "quasar-redshift.min.css" + '" />');
  17. $.getScript( host + "quasar-redshift.js", function(){
  18. var controller = new PluginController();
  19. controller.run();
  20. controller.paint();
  21. });
  22.  
  23.  
  24. }());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement