// ==UserScript== // @name Hide OP's post // @namespace pxgamer // @version 0.2 // @description Hides the OP in a thread. // @author pxgamer // @include *kat.cr/community/show/* // @grant none // @downloadURL https://update.greasyfork.icu/scripts/19630/Hide%20OP%27s%20post.user.js // @updateURL https://update.greasyfork.icu/scripts/19630/Hide%20OP%27s%20post.meta.js // ==/UserScript== (function() { 'use strict'; $('.commentHeadLine:first .floatright').prepend(' '); if ($('.firstPost').length > 0) { $('div[id^="post"]:first').hide(); } $('.toggleOP').on('click', function() { $('div[id^="post"]:first').toggle(); }); })();