Greasy Fork 还支持 简体中文。

mytube

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

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==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);
})();