Hide IdleScape ChatBox

Hide's the chatbox while you play IdleScape

  1. // ==UserScript==
  2. // @name Hide IdleScape ChatBox
  3. // @namespace SobieskiCodes
  4. // @version 0.2
  5. // @description Hide's the chatbox while you play IdleScape
  6. // @author probsjustin
  7. // @match http*://*idlescape.com/game
  8. // @grant none
  9. // ==/UserScript==
  10. (function() {
  11. 'use strict';
  12. var checkExist = setInterval(function() {
  13. var chatBox = document.getElementsByClassName("play-area-chat-container");
  14. if (chatBox[0] !== undefined || null) {
  15. chatBox[0].style.display = 'none';
  16. }
  17.  
  18. }, 3000);
  19. })();
  20.  
  21. // (function() {
  22. // while (document.getElementsByClassName("play-area-chat-container") === null || undefined) {
  23. // var chatBox = document.getElementsByClassName("play-area-chat-container");
  24. // if (chatBox[0] === undefined || null) {
  25. // chatBox = document.getElementsByClassName("play-area-chat-container");
  26. // } else if (chatBox[0].style.display !== 'none') {
  27. // chatBox[0].style.display = 'none'
  28. // break
  29. // }
  30. //
  31. // }
  32. // })();