NetFlix Auto-Skip Intro

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

  1. // ==UserScript==
  2. // @name NetFlix Auto-Skip Intro
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0.0
  5. // @description Automatically skips the intro on Netflix if the "Skip" button is present.
  6. // @author NineSun Development
  7. // @match https://www.netflix.com/watch/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. setInterval(() => {
  15. const skip = document.querySelector('.skip-credits > a');
  16. if ( skip ){
  17. skip.click();
  18. }
  19. }, 250);
  20. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址