Created
March 3, 2023 03:08
-
-
Save jloosli/25258fe092c4dc8462de4471950a52dd to your computer and use it in GitHub Desktop.
bookmarklet to get youtube video id
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
(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