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! เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Marius Kießling และคุณลักษณะหลักของมันคือ "Easily pop out any video player into a PIP window."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PIPsy - PIP out your video player!

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}