This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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. |