// ==UserScript== // @name Add extra forums // @namespace PXgamer // @author PXgamer // @description add extra forums // @include *kat.cr/community/ // @version 0.3 // @grant none // @downloadURL none // ==/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(); });