Video picture in picture
Video picture in picture
Vad är Video picture in picture?
Video picture in picture är en Chrome-tillägg utvecklad av Oscar de Dios, och dess huvudfunktion är "Video picture in picture".
Tilläggsskärmbilder
Ladda ner Video picture in picture-förlängningens CRX-fil
Ladda ner Video picture in picture-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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/
Grundläggande Information om Tillägg
Namn | Video picture in picture |
ID | bfncjmnhlgddppdmogacohjjieiahelp |
Officiell webbadress | https://chromewebstore.google.com/detail/video-picture-in-picture/bfncjmnhlgddppdmogacohjjieiahelp |
Beskrivning | Video picture in picture |
Filstorlek | 5.87 KB |
Antal Installationer | 578 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2019-03-21 |
Publiceringsdatum | 2019-03-16 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | Oscar de Dios |
E-post | [email protected] |
Betalningssätt | free |
URL till Sekretesspolicy Sidan | https://www.noteboardapp.com/policy |
Stödda Språk | 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:\/\/*\/*" ] } |