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ファイルをダウンロード

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