Last active
January 29, 2019 10:57
-
-
Save furious/c442d5548ee650508034d39c9b8c1b64 to your computer and use it in GitHub Desktop.
Netflix - Automatic "Skip Intro"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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