NetFlix Auto-Skip Intro

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

< Rückmeldungen aufNetFlix Auto-Skip Intro

Frage/Kommentar

§
Veröffentlicht: 25.06.2024

This selector works now [data-uia="player-skip-intro"], June 2024.

// ==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
// @downloadURL https://update.greasyfork.org/scripts/397009/NetFlix%20Auto-Skip%20Intro.user.js
// @updateURL https://update.greasyfork.org/scripts/397009/NetFlix%20Auto-Skip%20Intro.meta.js
// ==/UserScript==

(function() {
    'use strict';

    setInterval(() => {
        const skip = document.querySelector('[data-uia="player-skip-intro"]');
        if ( skip ){
            skip.click();
        }
    }, 250);
})();

Antwort schreiben

Anmelden um eine Antwort zu senden.