Skip to content

Instantly share code, notes, and snippets.

@furious
Last active January 29, 2019 10:57
Show Gist options
  • Save furious/c442d5548ee650508034d39c9b8c1b64 to your computer and use it in GitHub Desktop.
Save furious/c442d5548ee650508034d39c9b8c1b64 to your computer and use it in GitHub Desktop.
Netflix - Automatic "Skip Intro"
// ==UserScript==
// @name Netflix - Auto Skip Intro
// @namespace netflixautoskipintro
// @version 0.1
// @description Automatically skips intro cutscenes when available
// @author FURiOUS
// @match https://www.netflix.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
setInterval(function(){ var skip=document.querySelector('.skip-credits a'); if(skip) skip.click(); }, 5000);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment