NeoGAF : Remove "This Message Is Hidden"

Completely hides messages from users whom you've added to your ignore list.

  1. // ==UserScript==
  2. // @name NeoGAF : Remove "This Message Is Hidden"
  3. // @namespace hateradio)))
  4. // @description Completely hides messages from users whom you've added to your ignore list.
  5. // @include http*://*neogaf.com/forum/showthread.php?p=*
  6. // @include http*://*neogaf.net/forum/showthread.php?p=*
  7. // @version 2.1
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function () {
  12. 'use strict';
  13. var c = document.createElement('style');
  14. c.type = 'text/css';
  15. c.textContent = '.postbit.ignored { display: none; }';
  16. document.body.appendChild(c);
  17. }());