Skip to content

Instantly share code, notes, and snippets.

@stu43005
Created October 11, 2021 12:38
Show Gist options
  • Save stu43005/f1a478035bd52fba9b74c10718e26eb5 to your computer and use it in GitHub Desktop.
Save stu43005/f1a478035bd52fba9b74c10718e26eb5 to your computer and use it in GitHub Desktop.
Youtube goto MemberOnly playlist bookmark
const channelId = document.querySelector('meta[itemprop="channelId"]').content;
location.href = `https://www.youtube.com/playlist?list=UUMO${channelId.replace(/^UC/, "")}`;
// Bookmark:
// javascript: (() => { const i = document.querySelector('meta[itemprop="channelId"]').content;location.href=`https://www.youtube.com/playlist?list=UUMO${i.replace(/^UC/, "")}` })()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment