Skip to content

Instantly share code, notes, and snippets.

@jloosli
Created March 3, 2023 03:08
Show Gist options
  • Save jloosli/25258fe092c4dc8462de4471950a52dd to your computer and use it in GitHub Desktop.
Save jloosli/25258fe092c4dc8462de4471950a52dd to your computer and use it in GitHub Desktop.
bookmarklet to get youtube video id
(function() {
const urlParams=new URLSearchParams(window.location.search);
const id=urlParams.get('v');
navigator.clipboard.writeText(id);
})();
void(0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment