mytube

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

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 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);
})();