// ==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 // @downloadURL https://update.greasyfork.icu/scripts/21325/Hide%20Stickied%20Threads.user.js // @updateURL https://update.greasyfork.icu/scripts/21325/Hide%20Stickied%20Threads.meta.js // ==/UserScript== /*jshint multistr: true */ (function() { 'use strict'; $('table tbody tr td span.statusIcon.ka.ka-pin[title="Sticky thread"]').parent().parent().hide(); })();