Hides stickied threads in forum groups
当前为
// ==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();
})();