Skip to content

Instantly share code, notes, and snippets.

@pfgithub
Created December 16, 2017 23:08
Show Gist options
  • Save pfgithub/83b6b6e824839e9be7bffe375d1b5cbe to your computer and use it in GitHub Desktop.
Save pfgithub/83b6b6e824839e9be7bffe375d1b5cbe to your computer and use it in GitHub Desktop.
Get all belled channels on youtube
// Visit https://www.youtube.com/subscription_manager
let vals = [];
Array.from(document.getElementsByClassName("yt-uix-subscription-notifications-all")).forEach((bellicon) => {
vals.push(bellicon.parentNode.parentNode.parentNode.childNodes[0].childNodes[0].childNodes[0].getAttribute("href").replace("/channel/", "")/*replace first instance*/);
});
vals
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment