brijeshb42 / Netflix Autoskip

// ==UserScript==
// @name         Netflix Autoskip
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       brijeshb42
// @match        https://www.netflix.com/*
// @license      MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var intervalID;

    function skip() {
        const link = document.querySelector('.skip-credits a');
        if (link) {
            link.click();
            stop();
            setTimeout(start, 10000);
        }
    }

    function start() {
        intervalID = setInterval(skip, 1000);
    }

    function stop() {
        clearInterval(intervalID);
    }

    start();
})();