Created
July 25, 2023 19:27
-
-
Save emcoffey3/4d3f3ae9e82fa50155c1f0f8327209c3 to your computer and use it in GitHub Desktop.
Get YouTube Shorts Standard Player URLs
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
document.querySelectorAll('a[href^="/shorts"]').forEach(a => { | |
console.log(a.getAttribute('aria-label')); | |
console.log(a.href.replace("shorts/", "watch?v=")); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment