Created
October 11, 2021 12:38
-
-
Save stu43005/f1a478035bd52fba9b74c10718e26eb5 to your computer and use it in GitHub Desktop.
Youtube goto MemberOnly playlist bookmark
This file contains hidden or 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
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