PIPvid

Enables JS PIP support for any HTML 5 video element

PIPvidคืออะไร?

PIPvid เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Enables JS PIP support for any HTML 5 video element"

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PIPvid

ดาวน์โหลดไฟล์ส่วนขยาย PIPvid ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Chromium based browsers upport picture-in-picture and there is a JavaScript API which allows websites to leverage this capability. Unfortunately many websites don't so users are left to using browser Windows and OS level windowing management to re-produce this capability.

PIPvideo does exactly what you imagine it does. It finds the video elements on the page and adds a little icon in the top left hand corner that when clicked it will open the video leveraging this API and the PIP technology built into Chromium.

In order to ensure that the extension doesn't have any negative performance implications you have to click the extension button for it to add the icon to the videos. I've successfully tested it on:

* YouTube
* NFL Gamepass
* Disney Plus
* Netflix
* CNN
* ESPN
* Twitch
* Mixer

Notice: Some websites modify the DOM numerous times and because of this some sites do not currently work in the current design. Here are some that I have found that do not:

* Polygon
* Hulu
* NBA.com
* Hotstar                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ PIPvid PIPvid
ID dkjikmdpclhdhinpibfkknpmoadogcbm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/pipvid/dkjikmdpclhdhinpibfkknpmoadogcbm
คำอธิบาย Enables JS PIP support for any HTML 5 video element
ขนาดไฟล์ 5.92 KB
จำนวนการติดตั้ง 227
เวอร์ชันปัจจุบัน 1
อัปเดตครั้งล่าสุด 2020-05-04
วันที่เผยแพร่ 2020-05-02
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/gregwhitworth/pipvid
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PIPvid",
    "version": "1",
    "description": "Enables JS PIP support for any HTML 5 video element",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "pip.css"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ],
    "web_accessible_resources": [
        "icon.png"
    ]
}