Skip to content

Instantly share code, notes, and snippets.

View aoqia194's full-sized avatar

aoqia194

  • Australia
  • 22:22 (UTC +10:00)
View GitHub Profile
@aoqia194
aoqia194 / mass-youtube-unsubscriber.js
Last active June 1, 2024 10:55
A really bad mass YouTube channel unsubscriber!
var i = 0;
var intval = setInterval(unsubscribeFromChannel, 1000);
function unsubscribeFromChannel() {
let gridContainer = document.getElementById("grid-container");
let channelShelf = gridContainer.getElementsByClassName("ytd-expanded-shelf-contents-renderer");
if (i < channelShelf.length) {
channelShelf[i].querySelector("[aria-label^='Current setting is ']").click();