Skip to content

Instantly share code, notes, and snippets.

@flyfloor
Last active January 21, 2016 02:24
Show Gist options
  • Save flyfloor/aa0cd257725d354dc2d1 to your computer and use it in GitHub Desktop.
Save flyfloor/aa0cd257725d354dc2d1 to your computer and use it in GitHub Desktop.
drowning in problems, game auto play : )
(function(){
setInterval(function(){
var doms = document.getElementsByTagName('a');
for(var i in doms){
if(doms[i].text == "Solve"){
doms[i].click();
}
}
}, 2000);
})();
@flyfloor
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment