Created
February 10, 2026 00:50
-
-
Save jojobyte/859879b3b5a2199444346de59808a31a to your computer and use it in GitHub Desktop.
Bookmarklet to find the first video element and make it Picture-in-Picture. Paste as the URL inside a bookmark.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| javascript:void function(){ | |
| if (!document.pictureInPictureEnabled) { | |
| console.log("Your browser cannot use picture-in-picture") | |
| return; | |
| } | |
| document.querySelector("video").requestPictureInPicture() | |
| }(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| javascript:void function(){document.pictureInPictureEnabled%3Fdocument.querySelector("video").requestPictureInPicture():console.log("Your browser cannot use picture-in-picture")}(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment