Video picture in picture
Video picture in picture
Was ist Video picture in picture?
Video picture in picture ist eine Chrome-Erweiterung, die von Oscar de Dios entwickelt wurde, und ihr Hauptmerkmal ist "Video picture in picture".
Erweiterungsscreenshots
Video picture in picture-Erweiterungs-CRX-Datei herunterladen
Laden Sie Video picture in picture-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Chrome extension to open the video of the active page to picture in picture mode.
It will open a litle window "always on top", it will be possible to use the computer in other windows while you watch the video with
the video always visible.
The code is in: https://github.com/OscarDeDios/pictureInPictureExtension
The extension uses the new picture in picture API: https://wicg.github.io/picture-in-picture/ Grundlegende Informationen zur Erweiterung
| Name | |
| ID | bfncjmnhlgddppdmogacohjjieiahelp |
| Offizielle URL | https://chromewebstore.google.com/detail/video-picture-in-picture/bfncjmnhlgddppdmogacohjjieiahelp |
| Beschreibung | Video picture in picture |
| Dateigröße | 5.87 KB |
| Installationsanzahl | 578 |
| Aktuelle Version | 1.1 |
| Letztes Update | 2019-03-21 |
| Veröffentlichungsdatum | 2019-03-16 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | Oscar de Dios |
| [email protected] | |
| Zahlungsart | free |
| URL der Datenschutzrichtlinien-Seite | https://www.noteboardapp.com/policy |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Video picture in picture",
"manifest_version": 2,
"version": "1.1",
"short_name": "Video picture in picture",
"icons": {
"48": "img\/pipVideo.png",
"128": "img\/pipVideo128.png"
},
"browser_action": {
"default_title": "__MSG_extName__",
"default_icon": {
"19": "img\/pipVideo.png"
}
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"description": "Video picture in picture",
"permissions": [
"activeTab",
"http:\/\/*\/*",
"https:\/\/*\/*"
]
} | |