// ==UserScript== // @name ChatHider *OLD* // @namespace Kilandor // @description Hides chat by default, but adds show/hide links // @include http://*.kongregate.com/games/* // @require http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js // @version 0.0.1.20160422204229 // @downloadURL none // ==/UserScript== (function() { // Append some text to the element with id #someText using the jQuery library. $("#chat_tab_pane").wrap('
'); $("#main_tab_set").after(' '); $("#kongchatroom").css('display', 'none'); }());