// ==UserScript== // @name Kongregate Chat Hider // @namespace Kilandor // @description Hides Kongregate 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.20160306124438 // @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('
Show / Hide
'); $("#kongchatroom").css('display', 'none'); }());