ChessCom - No GameOver Dialog

Your Mother

  1. // ==UserScript==
  2. // @name ChessCom - No GameOver Dialog
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Your Mother
  6. // @author You
  7. // @match https://www.chess.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=chess.com
  9. // @license MIT
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (()=>{
  14. function addStyle(rules) {
  15. let s = document.createElement('style')
  16. s.innerText = rules
  17. document.head.appendChild(s)
  18. return s
  19. }
  20.  
  21. addStyle(`.game-over-modal-content { display: none !important; }`)
  22. })()