Skip to content

Instantly share code, notes, and snippets.

@yazinsai
Last active July 23, 2020 10:04
Show Gist options
  • Save yazinsai/65144a42ce387de26eed14d1b662122a to your computer and use it in GitHub Desktop.
Save yazinsai/65144a42ce387de26eed14d1b662122a to your computer and use it in GitHub Desktop.
const elemsIn = (tag, parent) => Array.from(parent.getElementsByTagName(tag));
const speedUp = (v) => v.playbackRate = 2;
const videos = elemsIn('video', document);
const iframes = elemsIn('iframe', document);
videos.forEach(speedUp);
iframes.forEach((f) => elemsIn('video', f.contentWindow.document).forEach(speedUp));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment