// @name 自动跳过有图比广告
// @namespace 有图比
// @version 1.0
// @description 在有图比网页上自动跳过广告
// @author Joey Gambler
// @match *://www.有图比.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("Click button");
}
}
// 设置检测时间间隔
var timer = setInterval(skipAd, 1000); // 1000毫秒 = 1秒
})();[/ol]复制代码
对于那种可以跳过的广告,大概只能播放不到一秒就会被自动跳过。