Hide Stickied Threads

Hides stickied threads in forum groups

  1. // ==UserScript==
  2. // @name Hide Stickied Threads
  3. // @namespace pxgamer
  4. // @version 0.2
  5. // @description Hides stickied threads in forum groups
  6. // @author pxgamer
  7. // @include *kat.cr/community/*/
  8. // @grant none
  9. // ==/UserScript==
  10. /*jshint multistr: true */
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. $('table tbody tr td span.statusIcon.ka.ka-pin[title="Sticky thread"]').parent().parent().hide();
  16. })();