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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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": []
}