Hide OP's post

Hides the OP in a thread.

当前为 2016-05-12 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Hide OP's post
  3. // @namespace PXgamer
  4. // @version 0.1
  5. // @description Hides the OP in a thread.
  6. // @author PXgamer
  7. // @include *kat.cr/community/show/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. if ($('.firstPost').length > 0) {
  15. $('div[id^="post"]:first').hide();
  16. }
  17. })();