Skip to main content

Posts

Showing posts with the label YouTube channel

How to unsubscribe all your YouTube Channels with just a single click

 ๐Ÿ”ฐ ๐Ÿ”ฐ โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–โž– [You can only do this with a pc ] 1โƒฃ https://www.youtube.com/feed/channels Click or type this link in your web browser   (in pc only) 2โƒฃ Right click on the page  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.que...