Created
October 19, 2015 04:38
-
-
Save sighmon/547c023dfc957f690b04 to your computer and use it in GitHub Desktop.
Press a play button every 6 minutes
This file contains hidden or 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
function playJoy(){ | |
/* click play every 6 minutes */ | |
document.getElementsByClassName("heroPlayButton")[0].click(); | |
setTimeout(playJoy, 1000 * 60 * 6); | |
} | |
playJoy(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment