NetFlix Auto-Skip Intro

Automatically skips the intro on Netflix if the "Skip" button is present.

// ==UserScript==
// @name         NetFlix Auto-Skip Intro
// @namespace    http://tampermonkey.net/
// @version      1.0.0
// @description  Automatically skips the intro on Netflix if the "Skip" button is present.
// @author       NineSun Development
// @match        https://www.netflix.com/watch/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    setInterval(() => {
        const skip = document.querySelector('.skip-credits > a');
        if ( skip ){
            skip.click();
        }
    }, 250);
})();