Skip to content

Instantly share code, notes, and snippets.

@amberstar
Created June 14, 2019 20:02
Show Gist options
  • Save amberstar/5283f146798705293d7d2175e7763257 to your computer and use it in GitHub Desktop.
Save amberstar/5283f146798705293d7d2175e7763257 to your computer and use it in GitHub Desktop.
Javascript to make video on current page PiP
javascript:(function(){document.querySelectorAll("video").forEach(function(video){if(window.getComputedStyle(video).display!=='none'){video.webkitSetPresentationMode("picture-in-picture");}});})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment