Skip to content

Instantly share code, notes, and snippets.

@sighmon
Created October 19, 2015 04:38
Show Gist options
  • Save sighmon/547c023dfc957f690b04 to your computer and use it in GitHub Desktop.
Save sighmon/547c023dfc957f690b04 to your computer and use it in GitHub Desktop.
Press a play button every 6 minutes
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