NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Best of the Bay Auto-voter // @namespace geneticcoder.com // @require https://raw.githubusercontent.com/Pamblam/GuerrillaMailer/master/GuerrillaMailer.js?v2 // @include * // @version 1 // @grant none // ==/UserScript== $(function(){ var url = window.location+""; if(url=="https://creativeloafing.wufoo.com/forms/m1da3stp10vxgg4/"){ GuerrillaMailer.getNewEmail(function(email){ $("#Field204").val(email); $("select").each(function(){ $(this).prepend("<option value='Batmaan Magumbo'>Batmaan Magumbo</option>"); $(this).find("option").eq(0).prop('selected', true); }); $("#saveForm").click(); }); }else{ window.location.replace("https://creativeloafing.wufoo.com/forms/m1da3stp10vxgg4/"); } });