您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This script skips intro on netflix by using MutationObserver. jQuery free !
// ==UserScript== // @name Netflix intro skip // @description This script skips intro on netflix by using MutationObserver. jQuery free ! // @include https://www.netflix.com/* // @version 1 // @grant none // @namespace https://greasyfork.org/users/741166 // ==/UserScript== var click = new MouseEvent('click', { 'view': window, 'bubbles': true, 'cancelable': true }); var observer = new MutationObserver(function(mutations) { for (var mutation of mutations) { mutation.addedNodes?.[0].querySelector(".skip-credits > a")?.dispatchEvent(click); } }); observer.observe(unsafeWindow.document.querySelector('body'), { childList: true, subtree: true });