Jstris Stats Script

change the color of stats

目前為 2019-06-13 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name Jstris Stats Script
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description change the color of stats
  6. // @author jezevec10
  7. // @match https://*.jstris.jezevec10.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. /**************************
  12. Jstris Stats Script
  13. **************************/
  14.  
  15. (function() {
  16. window.addEventListener('load', function(){
  17. document.getElementById("stats").style.color="white";
  18. });
  19. })();