It really helps, my friend just got his Nexus 4 order with this script. In Google Chrome press Ctrl+Shift+J, paste the script to Console, and hit Enter.<p>setInterval( function() { var buttons = document.getElementsByClassName( 'buy-button-price' ); for ( var i = 0; i < buttons.length; i++ ) { if ( buttons[i].value === 'Proceed' ) { buttons[i].click(); console.log("click") } } }, 4000);
Legendary. Was working on building this exact kindof thing but you beat me to it. Took 1.5 minutes and it worked.<p>However, it HAS NO DETECTION OF SUCCESS, there is a popup not a page change. If I did it again I'd save the setInterval() result id and then use clearInterval(thatVar) when it works.
I made a similar one but instead of waiting 4 seconds, it makes a new request after it sees a new error response: <a href="http://pastebin.com/raw.php?i=XWwm8Sdv" rel="nofollow">http://pastebin.com/raw.php?i=XWwm8Sdv</a>