YouTube Picture in Picture
Float videos from YouTube with native picture-in-picture
What is YouTube Picture in Picture?
YouTube Picture in Picture is a Chrome extension developed by https://brunomacedo.com.br, and its main feature is "Float videos from YouTube with native picture-in-picture".
Extension Screenshots
Download YouTube Picture in Picture Extension CRX File
Download YouTube 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
Float videos from YouTube with native picture-in-picture.
Extension Basic Information
Name | |
ID | flfgfoknpbdaddimcppfkkhmgckcgoan |
Official URL | https://chrome.google.com/webstore/detail/youtube-picture-in-pictur/flfgfoknpbdaddimcppfkkhmgckcgoan |
Description | Float videos from YouTube with native picture-in-picture |
File Size | 105 KB |
Installation Count | 1,000 |
Current Version | 1.1.4 |
Last Updated | 2019-03-18 |
Publish Date | 2019-03-15 |
Rating | 3.90/5 Total 10 Ratings |
Developer | https://brunomacedo.com.br |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Picture in Picture", "short_name": "Float Video", "description": "Float videos from YouTube with native picture-in-picture", "author": "Bruno Macedo", "version": "1.1.4", "icons": { "16": "16.png", "48": "48.png", "64": "64.png", "128": "128.png" }, "permissions": [ "tabs" ], "background": { "persistent": true, "scripts": [ "picture-in-picture.js" ] }, "content_scripts": [ { "js": [ "picture-in-picture.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "browser_action": { "default_title": "Float Video", "default_popup": "picture-in-picture.html" } } |