Skip to content Skip to sidebar Skip to footer

How to Make Youtube Show Me My Subscription Feed Again

If you have used the same YouTube account for years, yous probably subscribed to many channels. This scenario makes it easier to follow uploads from your favorite content creators, but information technology has its downsides. In case you clicked on the pick to get bell notifications for every single upload from every YouTuber you subscribed to, you have to deal with a ton of notifications.

How to Do a Mass Unsubscribe in YouTube

Unfortunately, YouTube does not have a native option to mass unsubscribe from channels because information technology does not want you to practice it. On the bright side, you can exercise it yourself, and nosotros are going to prove yous how.

Unsubscribe from YouTube Channels One at a Time

If yous have lost involvement in a YouTube channel, in that location are several ways to unsubscribe.

  • Clicking on i of the channel's videos and clicking the gray "Subscribe" push to unsubscribe.
  • Clicking on the channel's homepage and doing the aforementioned process as above.
  • Going to your Subscriptions page, choosing "Manage," and unsubscribing to the list.
  • Heading to your "Manage" page and running a script to bulk delete all subscriptions.

You probably already know how to unsubscribe YouTube channels ane by 1, and know that it is very time-consuming. Simply, did you know you can go to the YouTube subscription manager and run across all the channels you are subscribed to?

View Your Existing YouTube Subscriptions List by doing the following:

  1. Log in to your YouTube account.
  2. Click on Subscriptions.
  3. Click on "Manage" in the top-right corner.

You tin can now ringlet through all of your subscriptions hither and make up one's mind which ones you want to keep watching and which ones you want to get rid of. This method is excellent for YouTube users who are selective about their subscriptions and don't desire to lose all of them.

Because of the confirmation pop-ups, the manual unsubscribe process notwithstanding requires many clicks depending on the number of channels that you follow. If y'all desire a better solution, try the methods below.

Mass Unsubscribe from All YouTube Channels

The following method allows you lot to mass-unsubscribe from all the YouTube Channels you follow. Remember that you will demand to subscribe over again to the ones you nevertheless enjoy. It might exist a good idea to write downward their names and URLs, so you don't forget about them.

Bulk unsubscribing from YouTube requires you lot to run a script, but don't worry, this method was tried, tested, and verified. Plus, you don't need to install any potentially harmful third-political party program on your computer.

Follow these steps to mass unsubscribe:

  1. Become to your subscription manager by clicking on "Subscriptions."
  2. Click on "Manage" in the upper-correct section.
  3. Scroll downwardly to the "bottom" of your subscriptions or find an empty spot on the page. Correct-click the empty expanse (shows cursor, not hand) and select the "Inspect Element" or "Inspect" option.
  4. Click on the Console tab, which is the second tab at the superlative.
  5. Curl to the bottom of the console until you reach the ">" symbol.
  6. Copy the code below into the command field and press "Enter." The Console should look like this while pasting the entire script:
          /**    * Youtube bulk unsubsribe fn.  * Wrapping this in an IIFE for browser compatibility.   */ (async function iife() {    // This is the time filibuster after which the "unsubscribe" push button is "clicked"; Tweak to your liking!   var UNSUBSCRIBE_DELAY_TIME = 2000   /**   * Delay runner. Wraps `setTimeout` then it can be `expect`ed on.   * @param {Function} fn    * @param {number} delay   */    var runAfterDelay = (fn, filibuster) => new Promise((resolve, turn down) => {     setTimeout(() => {        fn()       resolve()      }, delay)   })        // Get the channel list; this tin can be considered a row in the page.    var channels = Array.from(document.getElementsByTagName(`ytd-channel-renderer`))   console.log(`${channels.length} channels plant.`)     var ctr = 0    for (const channel of channels) {     // Get the subsribe button and trigger a "click"      channel.querySelector(`[aria-characterization^='Unsubscribe from']`).click()     await runAfterDelay(() => {        // Become the dialog container...       document.getElementsByTagName(`yt-ostend-dialog-renderer`)[0]          // and find the confirm push button...         .querySelector(`#ostend-push`)          // and "trigger" the click!         .click()        panel.log(`Unsubsribed ${ctr + 1}/${channels.length}`)       ctr++      }, UNSUBSCRIBE_DELAY_TIME)   }  })()        

Lookout as your subscriptions disappear, 1 past one.

Don't panic if progress slows down or appears frozen in time. The script causes that status while it works its magic. You tin can re-create/paste the code into the Console and rerun information technology if you lot don't become rid of all subscriptions on the first effort.

Be sure to refresh the page before you rerun the script! You should also refresh the folio to confirm all subscriptions are gone. When yous go back to the "Subscribe" page, the "Manage" option in the top-right section will no longer be there because, after all, you accept no more subscriptions.

For more information on the higher up script, cheque out the Stack Overflow YouTube unsubscribe script page. Thanks to Yogie for the original upload and all other submitters for theirs! You lot'll find several adapted scripts based on user input. One of the scripts is sure to bulk unsubscribe in your Youtube account.

goodhilewhousels.blogspot.com

Source: https://www.alphr.com/mass-unsubscribe-youtube/

Post a Comment for "How to Make Youtube Show Me My Subscription Feed Again"