Skip to content

Instantly share code, notes, and snippets.

@mossikz
mossikz / YTMassUnsubscribe.js
Last active March 21, 2023 06:21
A code snippet with a purpose to unsubscribe all of your channels which you subscribed in a blink of an eye!
/**
* Youtube bulk unsubsribe fn.
* Wrapping this in an IIFE for browser compatibility.
*/
(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.