NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Hide Stickied Threads // @namespace PXgamer // @version 0.2 // @description Hides stickied threads in forum groups // @author PXgamer // @include *kat.cr/community/*/ // @grant none // ==/UserScript== /*jshint multistr: true */ (function() { 'use strict'; $('table tbody tr td span.statusIcon.ka.ka-pin[title="Sticky thread"]').parent().parent().hide(); })();