Netflix Auto Skip Intro

Automatically click the Skip Intro button on Netflix

  1. // ==UserScript==
  2. // @name Netflix Auto Skip Intro
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Automatically click the Skip Intro button on Netflix
  6. // @author Rusty
  7. // @match https://www.netflix.com/*
  8. // @grant none
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. const checkForSkipButton = () => {
  16. const skipIntroButton = document.querySelector('[data-uia="player-skip-intro"]');
  17. if (skipIntroButton) {
  18. skipIntroButton.click();
  19. }
  20. }
  21.  
  22. setInterval(checkForSkipButton, 1000); // Check every second
  23. })();

QingJ © 2025

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