Skip to content

Instantly share code, notes, and snippets.

@andrewslotin
Created February 11, 2021 00:09
Show Gist options
  • Save andrewslotin/889af86ce3ff2c78090c29cb6e31ae4d to your computer and use it in GitHub Desktop.
Save andrewslotin/889af86ce3ff2c78090c29cb6e31ae4d to your computer and use it in GitHub Desktop.
Watch Amazon Video in PiP mode in Safari
Array.from(document.getElementsByTagName('video'))
.filter(vid => vid.src)
.forEach(vid => vid.webkitSetPresentationMode("picture-in-picture"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment