NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Reddit Hide NSFW // @namespace http://tampermonkey.net/ // @version 1 // @description Simple script to hide all NSFW links on reddit. // @author You // @include /https?:\/\/[a-z]+\.reddit\.com\// // @grant GM_listValues // @grant GM_addStyle // ==/UserScript== (function() { 'use strict'; function hideOver18() { var appBanners = document.getElementsByClassName('over18'), i; for (var i = 0; i < appBanners.length; i ++) { appBanners[i].style.display = 'none'; } } hideOver18(); })();