Start Amazon instant video in Safari (macOS) and use Picture in Picture Mode.
- Start stream on amazon
- Open console (Web Inspector) (CMD+ALT+i)
- Safari dev. tools should be aktivated how to
- Past this:
function startPiP() {
var videos = document.getElementsByTagName('video');
for(vid in videos) {
if(videos[vid].src) videos[vid].webkitSetPresentationMode("picture-in-picture");
}
}
startPiP();
- Sometimes you need to click Pause and then play before you run this code.
- Ready (Close Inspector)