Video picture in picture
Video picture in picture
What is Video picture in picture?
Video picture in picture is a Chrome extension developed by Oscar de Dios, and its main feature is "Video picture in picture".
Extension Screenshots
Download Video picture in picture Extension CRX File
Download Video picture in picture extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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/
Extension Basic Information
Name | Video picture in picture |
ID | bfncjmnhlgddppdmogacohjjieiahelp |
Official URL | https://chromewebstore.google.com/detail/video-picture-in-picture/bfncjmnhlgddppdmogacohjjieiahelp |
Description | Video picture in picture |
File Size | 5.87 KB |
Installation Count | 578 |
Current Version | 1.1 |
Last Updated | 2019-03-21 |
Publish Date | 2019-03-16 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Oscar de Dios |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://www.noteboardapp.com/policy |
Supported Languages | 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:\/\/*\/*" ] } |