Skip to content

Instantly share code, notes, and snippets.

@sotayamashita
Last active April 29, 2023 09:26
Show Gist options
  • Save sotayamashita/775fbb09f3b65967ce44252a66f011e0 to your computer and use it in GitHub Desktop.
Save sotayamashita/775fbb09f3b65967ce44252a66f011e0 to your computer and use it in GitHub Desktop.
Skip intro in Netflix automatically. Complete code is https://github.com/sotayamashita/auto-skip-x
/**
* https://github.com/sotayamashita/auto-skip-x
*/
const observer = new MutationObserver((mutationList, observer) => {
const skipIntroButton = document.querySelector("button.watch-video--skip-content-button");
if (skipIntroButton) {
skipIntroButton.click();
}
});
observer.observe(document, {
attributes: true,
childList: true,
subtree: true,
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment