Enhanced Floating Video Player (PIP)

A simple floating video player using Picture-In-Picture with direct integrations to YouTube, Twitch, Netflix, and more!

什么是Enhanced Floating Video Player (PIP)?

Enhanced Floating Video Player (PIP)是由Jean-Michel M. | twitch.tv/krowplex开发的Chrome扩展程序,该扩展的主要功能是“A simple floating video player using Picture-In-Picture with direct integrations to YouTube, Twitch, Netflix, and more!”。

扩展截图

screenshot
screenshot
screenshot

下载Enhanced Floating Video Player (PIP)扩展crx文件

下载Enhanced Floating Video Player (PIP)扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Picture-In-Picture is a Chromium feature, which allows to drag your video over other desktop windows, allowing you full flexibility and productivity.

Very helpful for people with one monitor, or if you need to do something while watching a tutorial, livestreams, movies, etc.


### How To ###

There are 2 ways:

First way: On YouTube, Netflix and Twitch, there will be a "PIP" button in the media player bar when hovering on it. This button will allow you to watch content on top of other windows.

Second way: Simply click on the extension icon at the top right of your browser. It will by default select the first available video on your current page.


### The Future ###

We plan on integrating the PIP button for many other sites. For now, sites with the PIP buttons are (but not limited to, if you use the extension icon), YouTube, Netflix and Twitch. The extension and user interface is subject to change, however, not the functionalities.


### Troubleshooting ###

Might not work on Chrome 70 versions or lower. Try updating your browser.

If you still have trouble, please submit your problem here:
https://github.com/jeanmichelmorin/Floating-Video-Player-Youtube-PIP/issues                    

扩展基本信息

名称 Enhanced Floating Video Player (PIP) Enhanced Floating Video Player (PIP)
ID oaihjcmhhokpahibakljjfkgbhghiffd
官方URL https://chromewebstore.google.com/detail/enhanced-floating-video-p/oaihjcmhhokpahibakljjfkgbhghiffd
简介 A simple floating video player using Picture-In-Picture with direct integrations to YouTube, Twitch, Netflix, and more!
文件大小 22.68 KB
安装次数 2,197
当前版本 2.0.2
更新时间 2021-07-19
上架时间 2021-07-14
评分 3.92/5 共12次评分
开发者 Jean-Michel M. | twitch.tv/krowplex
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/jeanmichelmorin/Floating-Video-Player-Youtube-PIP
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Enhanced Floating Video Player (PIP)",
    "version": "2.0.2",
    "manifest_version": 2,
    "description": "A simple floating video player using Picture-In-Picture with direct integrations to YouTube, Twitch, Netflix, and more!",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/pip_logic.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "js\/sites_integration\/youtube.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "js": [
                "js\/sites_integration\/netflix.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "js\/sites_integration\/twitch.js"
            ]
        }
    ],
    "icons": {
        "128": "Icon.png"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "js\/pip_logic.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": []
}