搜索
搜索
天涯的知库
显示页面
过去修订
您的足迹:
•
心得
本页面只读。您可以查看源文件,但不能更改它。如果您觉得这是系统错误,请联系管理员。
====== 油猴脚本 ====== ++++ 跳过油管广告 | <code> // ==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秒 })(); </code> ++++
life/娱乐/油猴脚本.txt
· 最后更改: 2023-12-26 14:03 由
goldentianya
回到顶部