Created
May 5, 2014 11:03
-
-
Save crisu83/5cb1293f54ac079b1389 to your computer and use it in GitHub Desktop.
Small script that will help you play "Drowning in Problems" by Notch http://game.notch.net/drowning/#
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Open up the developer console in your browser, paste the script below, press enter and enjoy! | |
*/ | |
var anchors, i; | |
setInterval(function() { | |
anchors = document.getElementsByTagName('a'); | |
for (i = 0; i < anchors.length; i++) { | |
anchors[i].click(); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment