Kongregate Chat Deleter

Deletes the Chat box from the page

// ==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
// ==/UserScript==

var chat = document.getElementById("chat_container");
chat.parentNode.removeChild(chat);