Skip to content

Instantly share code, notes, and snippets.

@dotproto
Created October 4, 2019 18:00
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dotproto/79cbb469dda17d56932dfeff8a6b52a9 to your computer and use it in GitHub Desktop.
Save dotproto/79cbb469dda17d56932dfeff8a6b52a9 to your computer and use it in GitHub Desktop.
Open transcription suggestion for current YT video
javascript:(function(){
var log = (...a) => console.log(...a);
const url = new URL(document.location.href);
if (url.hostname.endsWith('youtube.com')) {
const id = url.searchParams.get('v');
window.location = `https://www.youtube.com/timedtext_video?v=${id}`;
}
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment