Unsubscriby for Youtube
The easiest and most complete way to unsubscribe all your Youtube Channels
Youtube unsubscribe all
Review user movement across collected snapshots.
View collected rating snapshots from the latest 7-day window to assess rating stability.
Compare 1-day, 7-day, and 30-day net growth and growth rate.
Review publication date, version, supported languages, and crawl timestamps.
Review the store description, core capabilities, and common use cases.
Unsubscribing from all channels with one click without any troubles or requirements, just one click.
Inspect the latest comments and rating distribution.
Store average score: 4.9. The bars below are calculated from synced review text only, so they may be empty for extensions that have public ratings but no synced comments yet.
Review related products from the Chrome Web Store detail page.
The easiest and most complete way to unsubscribe all your Youtube Channels
Hide YouTube related videos, shorts, comments, suggestions wall, homepage recommendations, trending, and other distractions.
Automatically manage your YouTube subscriptions by eliminating the need to manually click the unsubscribe button for each channel.
Removes all videos from your YouTube liked playlist automatically.
Group YouTube subscriptions into YouTube folder. Video Deck for Youtube. Mark as watched videos. Filter YouTube video. Youtube mode
Effortlessly unsubscribe from all YouTube channels with one click. Save time and declutter your feed.
It doesn't work. Unfortunataly...
doesn't work
doesn't work.
doesn't work!
broken
doesn't work
Broken needs update
IT WORK PERFECTLY ! Just follow the right
The extension is broken since youtube UI changed. Here's the fix. Go to youtube home > subscriptions > manage > right click > inspect element > console > paste the below code snippet to unsubscribe from all. A few points to keep in mind - 1. I've made the change to make it work as of July 2023. If Youtube UI changes again, script would need to be fixed again. 2. You may want to install any extension like Youtube subscription importer & exporter to resubscribe to a few of channels again. 3. If this works for you, mark the review as helpful to help others know. ``` (async function iife() { // This is the time delay after which the "unsubscribe" button is "clicked"; Tweak to your liking! var UNSUBSCRIBE_DELAY_TIME = 2000 /** * Delay runner. Wraps `setTimeout` so it can be `await`ed on. * @param {Function} fn * @param {number} delay */ var runAfterDelay = (fn, delay) => new Promise((resolve, reject) => { setTimeout(() => { fn() resolve() }, delay) }) // Get the channel list; this can be considered a row in the page. var channels = Array.from(document.getElementsByTagName(`ytd-channel-renderer`)) console.log(`${channels.length} channels found.`) var ctr = 0 for (const channel of channels) { // Get the subscribe button and trigger a "click" channel.querySelector(`[aria-label^='Unsubscribe from']`).click() await runAfterDelay(() => { // Get the dialog container... document.getElementById("confirm-button").childNodes[1].childNodes[0].click(); console.log(`Unsubscribed ${ctr + 1}/${channels.length}`) ctr++ }, UNSUBSCRIBE_DELAY_TIME) } })() ```
Don't even work