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

Bypass all youtube ads including in video ads, skippable and non-skippable Ads

Από την 28/01/2021. Δείτε την τελευταία έκδοση.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         Youtube Ad Cleaner(Include Non-Skippable Ads- works)
// @namespace    http://tampermonkey.net/
// @version      1.49
// @description  Bypass all youtube ads including in video ads, skippable and non-skippable Ads
// @author       BjDanny
// @run-at          document-start
// @match        *://*.youtube.com/*
// ==/UserScript==
'use strict';

function myWindow()
{
    let y = window.location.href.replace("youtube", "youtubepp");
    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();
    }
    catch(e)
    {
        return;
    }
}


function createButton()
{
    let css = document.createElement('style');
    css.innerHTML = `
            .myButton {
            font-size: 14px;
            font-weight: bold;
            color: white;
            text-align: center;
            vertical-align: middle;
            border: 1px solid transparent;
            border-radius: 2px;
            background-color: #4CAF50;
            height:70%;
            weight:100%;
            padding: 2px 14px;
            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("ytd-video-owner-renderer").appendChild(btn);
}


function getUrlWithTimeStamp()
{
    let seconds;
    let videoId = window.location.href.split("?v=");
    let domain = "https://www.youtube.com/watch?v=";
    let url;
    let currentTime = document.getElementsByClassName("ytp-time-current")[0].textContent.split(":")
    switch(currentTime.length)
    {
        case 3:
            seconds = parseInt(currentTime[0])*3600 + parseInt(currentTime[1])*60 + parseInt(currentTime[2]) + 1;
            if (seconds.toString().charAt(0) == "0")
            {
                return domain + videoId[1] +"&t=" + seconds.toString().substr(1);
            }
            else
            {
                return domain + videoId[1] +"&t=" + seconds.toString();
            }
            break;
        case 2:
            seconds = parseInt(currentTime[0])*60 + parseInt(currentTime[1]) + 1;
            if (seconds.toString().charAt(0) == "0")
            {
                return domain + videoId[1] +"&t=" + seconds.toString().substr(1);
            }
            else
            {
                return domain + videoId[1] +"&t=" + seconds.toString();
            }
            break;
        case 1:
            seconds = parseInt(currentTime[0]) + 1;
            if (seconds.toString().charAt(0) == "0")
            {
                return domain + videoId[1] +"&t=" + seconds.toString().substr(1);
            }
            else
            {
                return domain + videoId[1] +"&t=" + seconds.toString();
            }
            break;
    }
}

//handles non-skippable Ad for firefox
function fixFireFox()
{
    let url = getUrlWithTimeStamp();
    const keyWords = ["Your video","Video will play","Ad will end"];
    try
    {
        keyWords.forEach(k =>{
            if (document.getElementsByClassName("ytp-ad-text ytp-ad-preview-text")[0]["textContent"].includes(k) == true)
            {
                console.log("Non-Skippable video Ad is found");
                setTimeout(()=>{window.location.href = url;},500);
            }
        });

    }
    catch(e)
    {
        return;
    }
}

function checkUserAgent()
{
    if (navigator.userAgent.includes("Firefox"))
    {
        return "Firefox";
    }
    else
    {
        return "Chrome";
    }
}

//handles non-skippable Ad for chrome
function adMonitor()
{
    try
    {
        let yt = document.getElementById("movie_player");
        let urlWithTimeStamp = yt.getVideoUrl();
        if (yt !==undefined || yt !== null)
        {
            let ytAdState = yt.getAdState();
            if (ytAdState === 1)
            {
                console.log("Non-Skippable video Ad is found");
                yt.stopVideo();
                setTimeout(()=>{window.location = urlWithTimeStamp;},500);
            }
        }
    }
    catch(e)
    {
        return;
    }
}

function setFix()
{
    if (checkUserAgent()=== "Firefox")
    {
        console.log("Firefox is detected");
        setInterval(fixFireFox, 1000);
    }
    else if (checkUserAgent()=== "Chrome")
    {
        console.log("Chrome is detected");
        setInterval(adMonitor, 1000);
    }
}

function removeSp()
{
    try
    {
        if (document.getElementById("support").innerText.includes("Ad") == true)
        {
            //                    document.getElementsByClassName("ytd-rich-item-renderer")[0].remove();
            document.getElementsByClassName("ytd-rich-item-renderer")[0].innerHTML = "<span style='font-size:40px;background-color:white'>Removed AD</span>"
            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"],
    "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();})} //handles skippable video Ad
}

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

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