Skip to content

Instantly share code, notes, and snippets.

@ruucm
Last active May 13, 2020 06:51
Show Gist options
  • Save ruucm/ec6479355af6e55d1fdecbb97576804f to your computer and use it in GitHub Desktop.
Save ruucm/ec6479355af6e55d1fdecbb97576804f to your computer and use it in GitHub Desktop.
Twitch Picture In Picture for Safari (JavaScript Bookmarklet)
// Original Source Code
var video = document.querySelector("div.video-player video");
if (video.webkitSupportsPresentationMode && typeof video.webkitSetPresentationMode === "function") {
video.webkitSetPresentationMode(video.webkitPresentationMode === "picture-in-picture" ? "inline" : "picture-in-picture");
}
// paste below line to as your bookmark in safari
// javascript:(function()%7Bvar%20video%20%3D%20document.querySelector(%22div.video-player%20video%22)%3Bif%20(video.webkitSupportsPresentationMode%20%26%26%20typeof%20video.webkitSetPresentationMode%20%3D%3D%3D%20%22function%22)%20%7Bvideo.webkitSetPresentationMode(video.webkitPresentationMode%20%3D%3D%3D%20%22picture-in-picture%22%20%3F%20%22inline%22%20%3A%20%22picture-in-picture%22)%3B%7D%7D)()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment