Skip to content

Instantly share code, notes, and snippets.

@titangene
Created June 24, 2022 11:24
Show Gist options
  • Save titangene/e3681b78ea119de0fba3fa26f5007486 to your computer and use it in GitHub Desktop.
Save titangene/e3681b78ea119de0fba3fa26f5007486 to your computer and use it in GitHub Desktop.
YouTube Shorts redirect to normal vedio page
(() => {
const vedioId = location.pathname.split('/').at(-1);
location.href = `${location.origin}/watch?v=${vedioId}`;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment