Youtube Ad Cleaner(Include Non-Skippable Ads- works)

(Be Tested Daily) Bypass all youtube ads (skippable and non-skippable Ads) plus download youtube video on the fly

Verze ze dne 13. 11. 2023. Zobrazit nejnovější verzi.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         Youtube Ad Cleaner(Include Non-Skippable Ads- works)
// @namespace    http://tampermonkey.net/
// @version      1.50.7
// @description  (Be Tested Daily) Bypass all youtube ads (skippable and non-skippable Ads) plus download youtube video on the fly
// @ Please add youtube.com to the whitelist if you are using any adblocker to avoid reload loops
// @author       BjDanny
// @run-at          document-start
// @match        *://*.youtube.com/*
// ==/UserScript==
'use strict';
var currentTime, duration, yt;


function myWindow()
{
    let y = window.location.href.replace("youtube", "youtube5s");
    let myWin = window.open(y,"Download Youtube Video","directories=no,titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=800, height=900");
    myWin.onload = setInterval(clearPage,1000);
}

function clearPage()
{
    try{
        document.querySelectorAll(".col-xs-12")[8].remove();
        document.querySelector("footer").remove();
        document.querySelector("ul").remove();
        document.querySelector(".navbar-header").remove();
        document.querySelector("#logo-icon").remove();
    }
    catch(e)
    {
        return;
    }
}


function createButton()
{
    try{
    let css = document.createElement('style');
    //Thanks GreenSheep3 for the css style
    css.innerHTML = `
    .myButton {
    font-size: 14px;
    font-weight: 300;
    color: #eee;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #555;
    border-radius: 50px;
    background-color: rgba(0, 0, 0, 0);
    height: 36px;
    width: 135px;
    padding: 0;
    margin: 8px
    }
    `;
    document.head.appendChild(css);
    let btn = document.createElement("BUTTON");
    btn.className = "myButton";
    btn.id = "mybutton";
    btn.innerHTML = "DOWNLOAD";
    btn.addEventListener("click", myWindow);
    document.querySelector("#owner").appendChild(btn);
    }
    catch(e)
    {
    }
}


function adMonitor()
{
    try
    {
        const yt = document.getElementById("movie_player");
        const keyWords = ["Your video","Video will play","Ad will end","Video plays soon"];
        currentTime = yt.getCurrentTime();
        duration = yt.getDuration();
        if ( yt !== undefined )
        {
            keyWords.forEach(k =>{
                if (document.getElementsByClassName("ytp-ad-text ytp-ad-preview-text")[0].textContent.includes(k) == true)
                   {
                       let videoAd = document.querySelector(".ad-showing video") || document.querySelector("video");
                       videoAd.currentTime = videoAd.duration;
                       console.log('Skipped a none clickable Video Ad.')

                   }});
         }
      }
    catch(e)
    {
      return;
    }
}


function setFix()
{
        setInterval(adMonitor, 1000);
}

function removeSp()
{
    try
    {
        if (document.getElementById("support").innerText.includes("Ad") == true)
        {
            document.getElementsByClassName("ytd-rich-item-renderer")[0].innerHTML = ""
            console.log('Sponsor Ad removed!');
        }
    }
    catch(e)
    {
        return;
    }
}

var Ads = {
    "aId":["masthead-ad","player-ads","top-container","offer-module","pyv-watch-related-dest-url","ytd-promoted-video-renderer","sparkles-container","fulfilled-layout"],
    "aClass":["style-scope ytd-search-pyv-renderer","ytd-compact-promoted-video-renderer","style-scope ytd-carousel-ad-renderer","ytp-ad-overlay-container","ytp-ad-message-container"],
    "aTag":["ytd-promoted-sparkles-text-search-renderer"],
    "vdoAd":["ytp-ad-text ytp-ad-preview-text","ytp-ad-skip-button ytp-button"],
    "removeByID":function(){this.aId.forEach(i=>{ let AdId = document.getElementById(i);if(AdId) AdId.remove();})},
    "removeByClassName":function(){this.aClass.forEach(c=>{ let AdClass = document.getElementsByClassName(c);if(AdClass[0]) AdClass[0].remove();})},
    "removeByTagName":function(){this.aTag.forEach(t=>{ let AdTag = document.getElementsByTagName(t);if(AdTag[0]) AdTag[0].remove();})},
    "removeVdoAd":function(){this.vdoAd.forEach(v=>{let AdVdo = document.getElementsByClassName(v)[0];if(AdVdo) {AdVdo.click(); console.log("Skipped a clickable Ad")}})} //handles skippable video Ad
}

function killAd()
{
    Ads.removeByID();
    Ads.removeByClassName();
    Ads.removeByTagName();
    Ads.removeVdoAd();
    removeSp();
}

document.addEventListener('DOMContentLoaded', ()=>{setFix();setInterval(killAd, 100); setTimeout(createButton, 5000);});