Kongregate Chat Deleter

Deletes the Chat box from the page

  1. // ==UserScript==
  2. // @name Kongregate Chat Deleter
  3. // @namespace http://www.overzealous.com
  4. // @include http://www.kongregate.com/games/*
  5. // @version 0.0.1.20160306124419
  6. // @description Deletes the Chat box from the page
  7. // ==/UserScript==
  8.  
  9. var chat = document.getElementById("chat_container");
  10. chat.parentNode.removeChild(chat);