Skip to content

Instantly share code, notes, and snippets.

@olejorgenb
Last active December 23, 2023 11:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save olejorgenb/f6b7f3c181f4bc8c574bdccfac52ad76 to your computer and use it in GitHub Desktop.
Save olejorgenb/f6b7f3c181f4bc8c574bdccfac52ad76 to your computer and use it in GitHub Desktop.
UnShort: Open a YouTube short video as a regular video (enabling seeking etc.)
//bookmarklet_title: UnShort
function unshort() {
const videoId = location.pathname.split("/")[2]
location.replace(`/watch?v=${videoId}`)
}
unshort()
@olejorgenb
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment