// ==UserScript== // @name Add extra forums // @namespace pxgamer // @author pxgamer // @description add extra forums // @include *kat.cr/community/ // @version 0.4 // @grant none // @downloadURL https://update.greasyfork.icu/scripts/18892/Add%20extra%20forums.user.js // @updateURL https://update.greasyfork.icu/scripts/18892/Add%20extra%20forums.meta.js // ==/UserScript== $(function(){ $('#wrapperInner div.mainpart table tbody tr td.communityLayout table thead').after(''+ ''+ ''+ 'Custom Forums'+ ''+ ''+ ''); console.log('added main'); $('#fcf').after(''+ ''+ ''+ '
'+ 'Torrent Requests'+ '
'+ ''+ ''+ ''); console.log('added content'); }); $('#fcf').on('click', function() { $('#forum_custom_forums').toggle(); });