CGUnchat

Hide the CodinGame web-chat.

  1. // ==UserScript==
  2. // @name CGUnchat
  3. // @namespace BlaiseEbuth
  4. // @match https://www.codingame.com/*
  5. // @grant none
  6. // @version 1.1
  7. // @author BlaiseEbuth
  8. // @description Hide the CodinGame web-chat.
  9. // @icon https://i.imgur.com/E39sADi.png
  10. // ==/UserScript==
  11.  
  12. 'use strict';
  13.  
  14. var hide = function()
  15. {
  16. document.getElementsByClassName("chat-wrapper")[0].style.cssText = "display:none !important";
  17. }
  18.  
  19. setInterval(hide, 1000);