油猴脚本
// ==UserScript== // @name 自动跳过YouTube广告 // @namespace youtube // @version 1.0 // @description 在YouTube网页上自动跳过广告 // @author Joey Gambler // @match *://www.youtube.com/* // @grant none // ==/UserScript== (function () { 'use strict'; function skipAd() { var skipButton = document.querySelector('.ytp-ad-text.ytp-ad-skip-button-text'); if (skipButton) { skipButton.click(); console.log("点击跳过按钮"); } var sofortButton = document.querySelector('.ytp-ad-text.ytp-ad-preview-text-modern'); if (sofortButton) { sofortButton.click(); console.log("点击即将播放"); } } // 设置检测时间间隔 var timer = setInterval(skipAd, 1000); // 1000毫秒 = 1秒 })();
life/娱乐/油猴脚本.txt · 最后更改: 2023-12-26 14:03 由 goldentianya