NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Gallowboob Convention // @namespace http://tampermonkey.net/ // @version 1 // @description we are all gallowboob on this blessed day // @author Valerokai // @match https://www.reddit.com/* // @grant none // ==/UserScript== (function() { 'use strict'; var gBoob = 1; var uName = $('a[href^="https://www.reddit.com/user/Valerokai/"]'); console.log(uName); if (gBoob === 0){ var text = ""; var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_"; for( var i=0; i < 10; i++ ) text += possible.charAt(Math.floor(Math.random() * possible.length)); uName.text(text);} else { uName.text('GallowBoob'); } })();