mytube

Skip youtube video ads duration < 180 seconds and banners. Tested on FIrefox

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         mytube
// @namespace    http://tampermonkey.net/
// @version      2024-04-13
// @description  Skip youtube video ads duration < 180 seconds and banners. Tested on FIrefox 
// @author       player27
// @match        *://*.youtube.com/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// ==/UserScript==

(function() {
    function mytube() {
        let videoPlayer = document.querySelector(".video-stream");
        if (videoPlayer && videoPlayer.duration < 180 ){
            videoPlayer.pause();
            videoPlayer.currentTime = videoPlayer.duration - 0.001;
            videoPlayer.play();
            videoPlayer.click()
            console.log("mytube","skip", videoPlayer.duration, videoPlayer.currentSrc);

            const buttons = document.querySelectorAll("[class*=ad-skip]");
            for (const button of buttons) {
                button.click();
            }
        }
        const adWords = ["-ad-", "-ads", "banner", "promo", "cta", "companion"];
        const elements = document.querySelectorAll("[class*=ytd]");
        for (const element of elements) {
            const classList = element.classList.toString();
            for (const word of adWords) {
                if (classList.indexOf(word) !== -1 && element.style.display !== 'none') {
                    element.style.display = 'none';
                    console.log("mytube","hide", classList);
                    break;
                }
            }
        }
    }
    setInterval(mytube, 250);
})();