NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Yeah While Banned // @namespace http://tampermonkey.net/ // @version 0.1 // @description Yeah Miiverse Posts While Banned // @author Tim // @match https://portal-us.olv.nintendo.net/* // @grant none // @require https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js // ==/UserScript== (function() { function the_yeah_thing () { var inputs = document.getElementsByClassName('submit miitoo-button'); for(var i = 0; i < inputs.length; i++) { inputs[i].disabled = false; } } setInterval(the_yeah_thing, 100); })();