Customise Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorised as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyse the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customised advertisements based on the pages you visited previously and to analyse the effectiveness of the ad campaigns.

No cookies to display.

How to Unsubscribe All Youtube Channel At Once [instantly]

- Advertisement -

If you’ve been subscribed to hundreds of YouTube channels over time, mass unsubscribing can be a frustrating process. YouTube doesn’t provide a direct way to remove all subscriptions at once, but there are fast workarounds you can use.

In this guide, I’ll show you three proven methods to unsubscribe from all YouTube channels quickly—whether you’re on Android, iOS, or PC. This includes a manual method, Google account history removal, and an automated script for PC.

Can You Unsubscribe from All YouTube Channels at Once?

🔴 Short answer: YouTube doesn’t offer a “bulk unsubscribe” button, but YES, you can remove all subscriptions quickly using a combination of:

  • ✅ Swipe-to-Unsubscribe (Mobile) – Best for Android/iOS users.
  • ✅ Google Interaction History Method – Removes subscriptions via YouTube’s data records.
  • ✅ JavaScript Bulk Unsubscribe Script (PC Only) – The fastest way to remove all subscriptions in seconds.

Let’s break down each method.

Method 1: Unsubscribe from All YouTube Channels via Google Account

Google logs your subscriptions under YouTube Interaction History, allowing you to remove them without visiting each channel manually.

Steps to Unsubscribe Using Google Account:

  1. Go to Google Account Settings
    • Tap your profile picture in YouTube and select Google Account.
  2. Navigate to “Data & Privacy”
    • Scroll down to YouTube History.
  3. Tap “Manage History”
    • Access your full YouTube activity log.
  4. Switch to the “Interactions” Tab
    • Find “Channel Subscriptions”.
  5. Tap “X” to Remove Each Subscription
    • Manually delete multiple subscriptions at once.
  6. Repeat Until All Channels Are Removed

✅ Best for users who want to mass unsubscribe without scripts!



Method 2: Unsubscribe from Multiple YouTube Channels on Mobile (Android/iOS)

Since YouTube doesn’t let you mass unsubscribe in one tap, you can still remove multiple subscriptions faster using the swipe method.

Steps to Unsubscribe from YouTube Channels on Mobile:

  1. Open the YouTube App
    • Launch YouTube on your Android or iPhone.
  2. Tap the “Subscriptions” Tab
    • Located at the bottom of your screen.
  3. Select “All” from the Top Right Corner
    • This displays all your subscribed channels.
  4. Tap “Manage” at the Top Right
    • You’ll now see all channels with an unsubscribe option.
  5. Swipe Right to Left to Unsubscribe
    • Slide each channel to instantly remove it.
subscription tab in YouTube app

Open your YouTube app and tap on the subscriptions icon at the bottom of the screen.

All-subscription tab in the YouTube app

As you open the subscription option, a new page will open. Here you have to Tap on All at the top right corner of the subscription page.

Manage tab in YouTube App

Tap on Manage at the top right corner of the screen.

to-unsubscribe channel by sliding

As you Tap on Manage, the list of all Subscribed channels will appear. It would help if you slid to the Left of the channel you want to unsubscribe from.

🔥 Pro Tip: Older Android devices allowed batch unsubscribing via sliding, but this feature has been removed on newer versions.


BUT BUT BUT! If you want to unsubscribe from all channels at once, you’ll need a laptop, PC, or desktop. Follow these steps:

I tried experimenting with the same script on Android using the Firefox browser with the Tampermonkey extension, but I was unable to perform mass unsubscription. I tried several times and even generated a new code for the mobile version (which I’ll share below), but it still didn’t work.

Method 3: Bulk Unsubscribe Script (PC – The Fastest Way)

If you want the quickest method to unsubscribe from all YouTube channels in seconds, use this JavaScript script in Chrome’s Developer Console.

⚠️ Disclaimer: This script is for educational purposes only. It automates the process, but use it at your own risk.

Steps to Bulk Unsubscribe from YouTube Channels on PC

  1. Go to YouTube Subscriptions Page
  2. Open Developer Console
    • Press Ctrl + Shift + J (Windows) or Cmd + Option + J (Mac) in Chrome.
  3. Paste and Run the Script
    • Copy and paste the script below into the console.
  4. Allow Pasting (If Prompted)
    • Type “allow pasting”, hit Enter, then paste the script again.
  5. Let the Script Run
    • It will automatically unsubscribe from all channels.

YouTube Bulk Unsubscribe Script (PC Only)

(async function iife() {
const UNSUBSCRIBE_DELAY_TIME = 2000;
const runAfterDelay = (fn, delay) => new Promise((resolve) => {
setTimeout(() => {
fn();
resolve();
}, delay);
});
const channels = Array.from(document.getElementsByTagName("ytd-channel-renderer"));
console.log(`${channels.length} channels found.`);
let ctr = 0;
for (const channel of channels) {
try {
const unsubBtn = channel.querySelector(`[aria-label^='Unsubscribe from']`);
if (!unsubBtn) continue;
unsubBtn.click();
console.log(`Clicked unsubscribe for channel ${ctr + 1}.`);
await runAfterDelay(() => {
const dialog = document.getElementsByTagName("yt-confirm-dialog-renderer")[0];
if (dialog) {
const confirmBtn = dialog.querySelector(`[aria-label^='Unsubscribe']`);
confirmBtn && confirmBtn.click();
}
}, UNSUBSCRIBE_DELAY_TIME);
ctr++;
} catch (error) {
console.error(`Error unsubscribing from channel ${ctr + 1}:`, error);
}
}
console.log(`Done unsubscribing from ${ctr} channels.`);
})();

🛠 Troubleshooting & FAQs

Q: Can I mass unsubscribe from multiple YouTube channels instead of all?

✅ Yes, in Method 1, you can manually select channels instead of unsubscribing from all.

Q: Can I undo mass unsubscription?

❌ No, once you unsubscribe, there’s no undo option. You will need to manually resubscribe.

Q: Why doesn’t YouTube allow bulk unsubscribing?

👉 YouTube discourages mass unsubscriptions to prevent spam & automation abuse.

Q: Does this work on Firefox/Edge?

⚠️ The script method only works in Chrome. Other browsers may need Tampermonkey extensions.

Q: Why does YouTube auto-resubscribe me?

👉 If you use third-party apps linked to your account, YouTube may resubscribe you as part of syncing issues.


✅ Conclusion: The Best Unsubscribe Method for You

📌 Best for Mobile Users: Swipe-to-Unsubscribe (Method 1)
💻 Fastest PC Method: JavaScript Script (Method 3)
📝 Best Without Scripts: Google Interaction History (Method 2)

🔥 Choose the best method for your needs! If you found this guide helpful, share it with others looking to declutter their YouTube subscriptions! 🚀

That is all from Fixing-Pro.com. Today we have shown How to UnSub all YouTube channels from YouTube App. I hope you found it helpful. We’ve mentioned the Screenshots that will guide you more with the tutorial.

Kunal
Kunalhttps://fixing-pro.com/author/kunal-kashyap/
Kunal Kashyap, the tech guru behind FixItKunal.com, Learn and Solve with Backdroid (Youtube Channel), simplifies complex tech issues with clear and user-friendly guides. With expertise in Android, iOS, and more, his tutorials empower users to tackle tech problems confidently. Kunal's engaging style makes technology accessible to both beginners and experts. Beyond tech, he explores psychology and keeps up with tech and business trends awarded by the Government and Namita Thapar.

Recent Articles

Related Stories

3 Comments

Leave A Reply

Please enter your comment!
Please enter your name here

Have any doubts, Subscribe and tell us from here: Here!