Remove Reddit NSFW Posts

Quick and dirty fix that blocks and removes all NSFW posts on reddit

  1. // ==UserScript==
  2. // @name Remove Reddit NSFW Posts
  3. // @namespace http://tampermonkey.net/
  4. // @version 1
  5. // @description Quick and dirty fix that blocks and removes all NSFW posts on reddit
  6. // @author BlackOdd (Reddit: /u/BlackOdder)
  7. // @match http://tampermonkey.net/scripts.php
  8. // @grant none
  9. // @include http*://www.reddit.com*
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. setInterval(function() {
  16. $('.nsfw-stamp').parent().parent().parent().parent().remove();
  17. }, 100);
  18. })();