Skip to content

Instantly share code, notes, and snippets.

@vstyler96
Last active November 2, 2023 20:39
Show Gist options
  • Save vstyler96/c9e3643f415c1dd9ba47e04f4ce79e06 to your computer and use it in GitHub Desktop.
Save vstyler96/c9e3643f415c1dd9ba47e04f4ce79e06 to your computer and use it in GitHub Desktop.
Play your guilty pleasures on YouTube and once finished, return to the home page.
let destroyAfterPlay = () => {
const video = document.querySelector(".html5-main-video");
video.currentTime = 0;
video.play();
setTimeout(() => {
window.location.href = "https://youtube.com";
}, video.duration * 1000);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment