Original Theme

First theme I made

  1. // ==UserScript==
  2. // @name Original Theme
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description First theme I made
  6. // @author Eddie
  7. // @match https://*.jstris.jezevec10.com/*
  8. // @grant none
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. window.addEventListener('load', function(){
  16. //Jstris Custom Background Image
  17. document.head.getElementsByTagName("style")[0].innerHTML="";
  18. document.body.style.backgroundImage="url('https://i.imgur.com/3t6lTZy.jpg')";
  19. document.body.style.backgroundSize="100%";
  20. document.getElementById("app").style.backgroundColor="rgba(0, 0, 0, 0)";
  21. document.getElementById("app").style.height="1000px";
  22.  
  23. //Jstris Block Skin Change
  24. loadSkin("https://i.imgur.com/GPvbGtc.png",32);
  25. loadGhostSkin("https://i.imgur.com/OvH7LA4.png",36);
  26. });
  27. })();