Greasy Fork is available in English.

NetFlix Auto-Skip Intro

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

< 脚本NetFlix Auto-Skip Intro的反馈

提问/评论

§
发表于:2024-06-25

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);
})();

发表回复

登录以发表回复。