差别
这里会显示出您选择的修订版和当前版本之间的差别。
life:娱乐:油猴脚本 [2023-12-26 14:02] – 创建 goldentianya | life:娱乐:油猴脚本 [2023-12-26 14:03] (当前版本) – goldentianya | ||
---|---|---|---|
行 2: | 行 2: | ||
++++ 跳过油管广告 | | ++++ 跳过油管广告 | | ||
- | < | + | < |
- | Insert_Code | + | // ==UserScript== |
+ | // @name | ||
+ | // @namespace | ||
+ | // @version | ||
+ | // @description | ||
+ | // @author | ||
+ | // @match | ||
+ | // @grant | ||
+ | // ==/ | ||
+ | |||
+ | (function () { | ||
+ | 'use strict'; | ||
+ | |||
+ | function skipAd() { | ||
+ | var skipButton = document.querySelector(' | ||
+ | if (skipButton) { | ||
+ | skipButton.click(); | ||
+ | console.log(" | ||
+ | } | ||
+ | |||
+ | var sofortButton = document.querySelector(' | ||
+ | |||
+ | if (sofortButton) { | ||
+ | sofortButton.click(); | ||
+ | console.log(" | ||
+ | } | ||
+ | } | ||
+ | |||
+ | // 设置检测时间间隔 | ||
+ | var timer = setInterval(skipAd, | ||
+ | })(); | ||
</ | </ | ||
++++ | ++++ |