willwm
3/28/2019 - 7:01 AM

Bookmarklet: Unsubscribe from YouTube channels in bulk

Bookmarklet: Unsubscribe from YouTube channels in bulk

javascript:(() => {
  const timeout = 500;
  const buttons = document.querySelectorAll("[aria-label^='Unsubscribe from']");

  for(let button of buttons) {
    setTimeout(() => { 
      console.group(button.attributes['aria-label'].value);

      setTimeout(() => { button.click(); }, timeout);

      setTimeout(() => {
        document.querySelector('#confirm-button').click();
      }, timeout);
  
      console.groupEnd();
    }, timeout);
  }
})();