All Projects → mulian → amazon-safari-pip-mode

mulian / amazon-safari-pip-mode

Licence: MIT license
Start Amazon instant video in Safari and use Picture in Picture Mode.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to amazon-safari-pip-mode

Lazy
Kule Lazy4 / CSS Framework
Stars: ✭ 147 (+258.54%)
Mutual labels:  safari
Tua Body Scroll Lock
🔐 Body scroll locking that just works with everything
Stars: ✭ 236 (+475.61%)
Mutual labels:  safari
snoozz-tab-snoozing
A Web Extension to declutter windows by snoozing tabs for later
Stars: ✭ 105 (+156.1%)
Mutual labels:  safari
Ultratabsaver
The open source Tab Manager Extension for Safari.
Stars: ✭ 178 (+334.15%)
Mutual labels:  safari
Ocaramba
C# Framework to automate tests using Selenium WebDriver
Stars: ✭ 234 (+470.73%)
Mutual labels:  safari
Extension Create
Create modern cross-browser extensions with no build configuration.
Stars: ✭ 167 (+307.32%)
Mutual labels:  safari
Bettersafariview
A better way to present a SFSafariViewController or start a ASWebAuthenticationSession in SwiftUI.
Stars: ✭ 105 (+156.1%)
Mutual labels:  safari
universalSmoothScroll
A cross-browser smooth-scrolling API which supports multiple and interruptable scroll-animations on all DOM's elements, even at the same time!
Stars: ✭ 46 (+12.2%)
Mutual labels:  safari
Supercookie
💭 Inspiration
Stars: ✭ 3,630 (+8753.66%)
Mutual labels:  safari
managed ml systems and iot
Managed Machine Learning Systems and Internet of Things Live Lesson
Stars: ✭ 35 (-14.63%)
Mutual labels:  safari
Remotedebug Ios Webkit Adapter
Debug Safari and WebViews on iOS from tools like VS Code and Chrome DevTools
Stars: ✭ 2,563 (+6151.22%)
Mutual labels:  safari
Wwdc
You don't have the time to watch all the WWDC session videos yourself? No problem me and many contributors extracted the gist for you 🥳
Stars: ✭ 2,561 (+6146.34%)
Mutual labels:  safari
Link Preview Js
Parse and/or extract web links meta information: title, description, images, videos, etc. [via OpenGraph], runs on mobiles and node.
Stars: ✭ 240 (+485.37%)
Mutual labels:  safari
Alfred Safari Assistant
Alfred 3+ workflow to search and use Safari bookmarks, history, reading list and tabs.
Stars: ✭ 169 (+312.2%)
Mutual labels:  safari
unmute-ios-audio
Enable/unmute WebAudio on iOS, even while mute switch is on
Stars: ✭ 96 (+134.15%)
Mutual labels:  safari
Safiler
Safari local file reader
Stars: ✭ 118 (+187.8%)
Mutual labels:  safari
Browser
The browser extension vault (Chrome, Firefox, Opera, Edge, Safari, & more).
Stars: ✭ 3,305 (+7960.98%)
Mutual labels:  safari
cosyTabs
SIMBL plug-in for Safari. Now with macOS Sierra/Safari 10 support. Small tabs like they used to be back in the day.
Stars: ✭ 44 (+7.32%)
Mutual labels:  safari
karma-detect-browsers
Karma runner plugin for detecting all browsers installed on the current system.
Stars: ✭ 44 (+7.32%)
Mutual labels:  safari
Safari Extensions
Awesome Safari extensions
Stars: ✭ 252 (+514.63%)
Mutual labels:  safari

amazon-safari-pip-mode

Start Amazon instant video in Safari (macOS) and use Picture in Picture Mode.

Steps:

  1. Start stream on amazon
  2. Open console (Web Inspector) (CMD+ALT+i)
  • Safari dev. tools should be aktivated how to
  1. 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.
  1. Ready (Close Inspector)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].