Video picture in picture
Video picture in picture
什么是Video picture in picture?
Video picture in picture是由Oscar de Dios开发的Chrome扩展程序,该扩展的主要功能是“Video picture in picture”。
扩展截图
下载Video picture in picture扩展crx文件
下载Video picture in picture扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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/
扩展基本信息
名称 | Video picture in picture |
ID | bfncjmnhlgddppdmogacohjjieiahelp |
官方URL | https://chromewebstore.google.com/detail/video-picture-in-picture/bfncjmnhlgddppdmogacohjjieiahelp |
简介 | Video picture in picture |
文件大小 | 5.87 KB |
安装次数 | 578 |
当前版本 | 1.1 |
更新时间 | 2019-03-21 |
上架时间 | 2019-03-16 |
评分 | 5.00/5 共1次评分 |
开发者 | Oscar de Dios |
电子邮箱 | [email protected] |
付费类型 | free |
隐私政策页面URL | https://www.noteboardapp.com/policy |
支持的语言 | 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:\/\/*\/*" ] } |