Left-sighted Script

Switches positions of hold and queue

  1. // ==UserScript==
  2. // @name Left-sighted Script
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.21
  5. // @description Switches positions of hold and queue
  6. // @author Oki
  7. // @match https://*.jstris.jezevec10.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. /**************************
  12. Left-sighted Script
  13. **************************/
  14.  
  15. (function() {
  16. window.addEventListener('load', function(){
  17.  
  18. queueCanvas.style.marginLeft = "0px"
  19. queueCanvas.style.marginRight = "10px"
  20. queueCanvas.style.float = "left"
  21. holdCanvas.style.float = "none"
  22. holdCanvas.style.marginLeft = "10px"
  23. holdCanvas.style.marginRight = "0px"
  24. $("#queueCanvas").prependTo("#main");
  25. rInfoBox.style.marginTop = "277px"
  26.  
  27. });
  28. })();