// ==UserScript== // @name Kongregate Chat Deleter // @namespace http://www.overzealous.com // @include http://www.kongregate.com/games/* // @version 0.0.1.20160306124419 // @description Deletes the Chat box from the page // @downloadURL none // ==/UserScript== var chat = document.getElementById("chat_container"); chat.parentNode.removeChild(chat);