UnSubscribe All YT Channels in Single Click (PC Only)

How to UnSubscribe All YouTube Channel at Single Click?


This Trick Can be Used in PC only.


Because it needs inspection Section to Make Live Changes.
We Recommend Chrome Browser in PC for doing this.

Follow Steps :
1. Click or Type this link in Browser https://www.youtube.com/feed/channels
2. Right Click there and Click on Inspect
3. Go to Console Section.
4. Copy and Paste below Code :

Code :

var i = 0;
var count = document.querySelectorAll("ytd-channel-renderer:not(.ytd-item-section-renderer)");

myTimer();

function myTimer () {
    if (count == 0) return;

    el = document.querySelector('.ytd-subscribe-button-renderer');
    el.click();

    setTimeout(function () {
        var unSubBtn = document.getElementById("confirm-button").click();
        i++;
        count--;

        console.log(i + " unsubscribed");
        console.log(count + " remaining");

        setTimeout(function () {
            el = document.querySelector("ytd-channel-renderer");
            el.parentNode.removeChild(el);

            myTimer();
        }, 250);
    }, 250);
}

5. Now Hit Enter

6. Congratulation you Successfully Unsubscribed All your YouTube Channels. 😉

Comments

Popular posts from this blog