油猴脚本跳过有图比广告,特别好用。

查看 35|回复 0
作者:xiaocai   
[ol]// ==UserScript==
// @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]复制代码
对于那种可以跳过的广告,大概只能播放不到一秒就会被自动跳过。

跳过, 有图, 广告

您需要登录后才可以回帖 登录 | 立即注册

返回顶部