NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Auto-sub to subreddit if NSFW // @namespace https://www.tblop.com // @version 1.0.3 // @license MIT // @description When on a nsfw 18+ subreddit, auto clicks subscribe button if not subscribed, and adds a handy TBLOP link above subreddit title // @author Greg from TBLOP.com // @match https://www.reddit.com/r/* // @grant none // ==/UserScript== (function() { 'use strict'; if ($(".nsfw-stamp").length > 10) { if ($('.subscribe-button .option.add.active')) { $('.subscribe-button').find('.option.add').click(); } $(".titlebox").prepend('<a href="https://www.tblop.com" style="font-size:15px;text-align:right;letter-spacing:1px;margin-bottom:4px;">[ Load TBLOP ]</a>'); } })();