Close Menu
Read Us 24×7
    What's Hot
    SOA OS23

    SOA OS23: The Future Blueprint for Scalable, Agile Digital Systems

    May 29, 2025
    Inter vs. Estrella Roja

    Inter vs. Estrella Roja: Full Match Guide and Detailed Stats

    May 29, 2025
    VCWeather

    VCWeather.org: The New Face of Hyperlocal Weather Reporting

    May 28, 2025
    Facebook X (Twitter) Instagram Pinterest LinkedIn
    Trending
    • SOA OS23: The Future Blueprint for Scalable, Agile Digital Systems
    • Inter vs. Estrella Roja: Full Match Guide and Detailed Stats
    • VCWeather.org: The New Face of Hyperlocal Weather Reporting
    • Baltimore Orioles vs San Francisco Giants Match Player Stats
    • Benefits of Sukanya Samriddhi Yojana for Savings
    • 10 Best Automated Penetration Testing Tools
    • 7 Best Backlit Keyboards for Every Budget
    • Top 11 “Best Buy” Alternatives for Your Electronics Needs in 2025
    Facebook X (Twitter) Instagram Pinterest LinkedIn
    Read Us 24×7
    • Home
    • Technology
      SOA OS23

      SOA OS23: The Future Blueprint for Scalable, Agile Digital Systems

      May 29, 2025
      VCWeather

      VCWeather.org: The New Face of Hyperlocal Weather Reporting

      May 28, 2025
      Best Automated Penetration Testing Tools

      10 Best Automated Penetration Testing Tools

      May 13, 2025
      Backlit Keyboards

      7 Best Backlit Keyboards for Every Budget

      May 12, 2025
      Dark Oxygen

      Dark Oxygen: Redefining Our Understanding of Oxygen Production in the Deep Ocean

      May 9, 2025
    • Business
      Sukanya Samriddhi Yojana

      Benefits of Sukanya Samriddhi Yojana for Savings

      May 13, 2025
      7 Smart Ways to Earn Extra Money in 2025

      7 Smart Ways to Earn Extra Money in 2025

      May 10, 2025

      A Deeper Look at What It Is Like Working at a Prop Firm

      May 1, 2025
      FintechZoom.IO

      FintechZoom.IO: Revolutionizing Fintech in 2025

      April 7, 2025
      Crypto Management

      Unhosted: Revolutionizing Crypto Management with Advanced Wallet Technology

      March 20, 2025
    • Entertainment
      YouTube Audio Downloader

      YouTube Audio Downloader: Your Music Liberation Tool 🎵

      May 9, 2025
      Firestick

      10 Amazing Benefits of Owning a Firestick You Need to Know

      April 24, 2025
      nhentainet

      nhentai.net – Why It’s Attracting Global Attention?

      April 20, 2025
      chatgpts-ghibli-art-generator-goes-viral-why-is-everyone-obsessed

      ChatGPT’s Ghibli Art Generator Goes Viral – Why is Everyone Obsessed?

      March 29, 2025
      Taylor Swift's Producer Suggests New Album on the Horizon

      Taylor Swift’s Producer Suggests New Album on the Horizon

      March 28, 2025
    • Lifestyle
    • Travel
    • Tech Q&A
    Read Us 24×7
    Home » How To Do A Mass Unsubscribe On YouTube At Once (2023)
    Technology

    How To Do A Mass Unsubscribe On YouTube At Once (2023)

    Sayan DuttaBy Sayan DuttaApril 23, 2023Updated:May 18, 20233 Mins Read
    Share Facebook Twitter Pinterest LinkedIn Reddit Email WhatsApp
    Mass Unsubscribe In YouTube
    Share
    Facebook Twitter LinkedIn Pinterest Email Reddit WhatsApp

    One of the most widely utilized and popular video streaming sites is YouTube. So, if you’re bored at home or on the road, YouTube is always ready to entertain you. On this platform, there are millions of content creators who produce compelling content for their members. You can subscribe to your favorite YouTube content creators to receive regular updates on their latest posts.

    Mass Unsubscribe Using Inspect Element Feature

    You can use the Inspect Element feature on your browser to run a code that will automatically unsubscribe you from all your YouTube channels.

    To do this task, you must sign in to your YouTube account. Follow by accessing your list of subscribed channels as previously described.

    Then, continue scrolling until you reach the final channel, thus displaying all your channels on the screen.

    From here, select Inspect or Inspect Element by right-clicking on the screen. At the top, choose the Console tab.

    Subsequently, duplicate the given code into the base of the Console window. To finalize the process, press Enter.

    /**
    * YouTube bulk unsubscribe fn.
    * Wrapping this in an IIFE for browser compatibility.
    */
    (async function iife() {
    // get the button elements
    const buttons = document.querySelectorAll(
    'ytd-subscription-button-renderer > paper-button'
    );
    // loop over them
    for (let button of buttons) {
    // check if subscribed
    if (button.hasAttribute('subscribed')) {
    // click button
    button.click();
    // wait a bit
    await new Promise((resolve) => setTimeout(resolve, 200));
    }
    }
    })();

    Mass Unsubscribe YouTube Channels Using Script

    You can obviously unsubscribe from a YouTube channel if you don’t like it. When you wish to unsubscribe from 1000 channels at once, the difficulty arises. That would be ridiculous.

    There is, however, an easy way to unsubscribe from all of the channels at once using a JavaScript script.

    1. You must first log into your YouTube account (obviously).
    2. To get a list of all subscriptions, go to the “Subscriptions” tab.
    3. To manage your subscription lists, go to the top-right corner and click “MANAGE.”
    4. You’ll be taken to the channel page, where the script will be run. This page can be accessed straight from your browser by clicking on this link.
    5. By right-clicking on an empty section of the page and selecting “Inspect,” you can inspect the webpage.
    6. Scroll to the bottom of the Console tab until you see the “>” symbol. The script will be run from this location.
    7. Copy the script below to automate the unsubscription of YouTube channels in bulk.
    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("channel " + i + " unsubscribed");
    setTimeout(function () {
    el = document.querySelector("ytd-channel-renderer");
    el.parentNode.removeChild(el);
    myTimer();
    }, 250);
    }, 250);
    }
    1. Press enter after pasting the automation script into the terminal.
    2. The script will run, and all of the channels will be unsubscribed one by one. I improved the code, and you should now see better logs on the right.

    If the script fails, simply refresh the page and try again.

    The unsubscription process will finally be finished. I was subscribed to around 1000 channels, so it took a long time.

    I hope you found the information helpful and were able to successfully unsubscribe from all of the undesirable channels.

    Share. Facebook Twitter Pinterest LinkedIn Email Reddit WhatsApp
    Previous Article9 Tools Every Designer Needs in Their Toolkit
    Next Article Can the Porsche GT3 be a daily driver?
    Avatar for Sayan Dutta
    Sayan Dutta
    • Website
    • Facebook
    • X (Twitter)
    • Pinterest
    • Instagram
    • LinkedIn

    I am glad you came over here. So, you want to know a little bit about me. I am a passionate digital marketer, blogger, and engineer. I have knowledge & experience in search engine optimization, digital analytics, google algorithms, and many other things.

    Related Posts

    SOA OS23
    Technology

    SOA OS23: The Future Blueprint for Scalable, Agile Digital Systems

    May 29, 2025
    VCWeather
    Technology

    VCWeather.org: The New Face of Hyperlocal Weather Reporting

    May 28, 2025
    Best Automated Penetration Testing Tools
    Technology

    10 Best Automated Penetration Testing Tools

    May 13, 2025

    Table of Contents

    • Mass Unsubscribe Using Inspect Element Feature
    • Mass Unsubscribe YouTube Channels Using Script

    Top Posts

    SOA OS23

    SOA OS23: The Future Blueprint for Scalable, Agile Digital Systems

    May 29, 2025
    Inter vs. Estrella Roja

    Inter vs. Estrella Roja: Full Match Guide and Detailed Stats

    May 29, 2025
    VCWeather

    VCWeather.org: The New Face of Hyperlocal Weather Reporting

    May 28, 2025
    baltimore-orioles-vs-san-francisco-giants-match-player-sats

    Baltimore Orioles vs San Francisco Giants Match Player Stats

    May 28, 2025
    Popular in Social Media
    Anon IG Viewer

    Anon IG Viewer: Best Anonymous Viewer for Instagram

    April 3, 2025
    CFBR

    How to Use CFBR Appropriately? (Pros and Cons)

    September 24, 2024
    EU to Get WhatsApp, Messenger Interoperability with iMessage, Telegram and More

    EU to Get WhatsApp, Messenger Interoperability with iMessage, Telegram and More

    September 9, 2024
    New in Health
    9 Reasons Why People in Their 40s Should Take Daily Supplements

    9 Reasons Why People in Their 40s Should Take Daily Supplements

    April 8, 2025
    Why Put Your Tampons In The Freezer

    Why Put Your Tampons In The Freezer? (Answered)

    November 26, 2024
    WellHealthOrganic Buffalo Milk Tag

    WellHealthOrganic Buffalo Milk Tag: Unveiling Nutritional Brilliance

    November 13, 2024

    google news

    google-play-badge

    Protected by Copyscape

    DMCA.com Protection Status

    Facebook X (Twitter) Instagram Pinterest
    • Terms of Service
    • Privacy Policy
    • Contact Us
    • About
    • Sitemap
    Copyright © 2025 - Read Us 24x7

    Type above and press Enter to search. Press Esc to cancel.