Skip to content

Instantly share code, notes, and snippets.

@MarkZhangTW
Created June 3, 2019 05:04
Show Gist options
  • Select an option

  • Save MarkZhangTW/14c09462facdbc2bbda2c7fc13229a33 to your computer and use it in GitHub Desktop.

Select an option

Save MarkZhangTW/14c09462facdbc2bbda2c7fc13229a33 to your computer and use it in GitHub Desktop.
Go next in youtube playlist every 10 seconds.
window.setInterval(
() => document.dispatchEvent(
new KeyboardEvent('keydown', {'keyCode': 78, 'shiftKey': true})
), 10000
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment