Skip to content

Instantly share code, notes, and snippets.

@emcoffey3
Created July 25, 2023 19:27
Show Gist options
  • Save emcoffey3/4d3f3ae9e82fa50155c1f0f8327209c3 to your computer and use it in GitHub Desktop.
Save emcoffey3/4d3f3ae9e82fa50155c1f0f8327209c3 to your computer and use it in GitHub Desktop.
Get YouTube Shorts Standard Player URLs
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