how to unsubscribe on youtube all at once

Опубликовано: 06 Май 2026
на канале: Bugs Solutions
158
4

#unsubscribe #youtube #howtounsubscribeonyoutubeallatonce
#howtounsubscribeallsubscriptionsatonceonyoutube,#howtounsubscribeallyoutubechannelaonce,#howtounsubscribeonyoutubeallatonce,#howtounsubscribeonyoutubeallatonceandroid,#howtounsubscribeallyoutubechannelsinoneclickunsubscribeyoutubechannelall,howtounsubscribefromyoutube#howtounsubscribeyoutubechannelallatonceinmobile,#howtoremoveallsubscriptionsonyoutubeatonce,#howtoremoveallsubscriptionsonyoutubeatonce2021,#hack
1. Click or type this link in web browser
https://www.youtube.com/feed/channels (in pc only)

2. right click there and click on inspect and go to console section

3. copy and paste this 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);
}

4. Now Hit Enter

5. Congratulation you Successfully Unsubscribe All your youtube channel.