PIPsy - PIP out your video player!
Easily pop out any video player into a PIP window.
什么是PIPsy - PIP out your video player!?
PIPsy - PIP out your video player!是由Marius Kießling开发的Chrome扩展程序,该扩展的主要功能是“Easily pop out any video player into a PIP window.”。
扩展截图
下载PIPsy - PIP out your video player!扩展crx文件
下载PIPsy - PIP out your video player!扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Chrome 70 introduced the picture in picture (PIP) mode for HTML5 video players. This extension simply takes the functionality offered by Chrome and brings it to websites that don't support it directly. Using this extension you can use PIP on on e.g. these sites: - Netflix - Amazon Prime Video The extension is in an early stage right now. Please feel free to open bug reports in GitHub's issue tracker (https://github.com/mariuskiessling/pipsy). Disclaimer: This extension is not affiliated and/or endorsed by any of the sites above and in the screenshots.
扩展基本信息
名称 | PIPsy - PIP out your video player! |
ID | eifkfjbbngmilpppefdcnocfpdlaipal |
官方URL | https://chromewebstore.google.com/detail/pipsy-pip-out-your-video/eifkfjbbngmilpppefdcnocfpdlaipal |
简介 | Easily pop out any video player into a PIP window. |
文件大小 | 13.89 KB |
安装次数 | 3,000 |
当前版本 | 1.0.2 |
更新时间 | 2018-11-29 |
上架时间 | 2018-11-29 |
评分 | 4.15/5 共13次评分 |
开发者 | Marius Kießling |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "PIPsy - PIP out your video player!", "version": "1.0.2", "manifest_version": 2, "description": "Easily pop out any video player into a PIP window.", "homepage_url": "https:\/\/mariuskiessling.de", "icons": { "16": "icons\/icon_16.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "background": { "scripts": [ "src\/background.js" ], "persistent": false }, "browser_action": { "default_icon": "icons\/icon_19.png" }, "permissions": [ "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/*.amazon.de\/*", "https:\/\/*.netflix.com\/*", "https:\/\/*.skygo.sky.de\/*", "https:\/\/*.youtube.com\/*" ], "js": [ "src\/pipsy.js" ] } ] } |