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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

PIPsy - PIP out your video player! 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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! 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"
            ]
        }
    ]
}