Picture in Picture

Provide PIP function for Youtube, Bilibili and so on.

Picture in Pictureคืออะไร?

Picture in Picture เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.johnzhang.xyz และคุณลักษณะหลักของมันคือ "Provide PIP function for Youtube, Bilibili and so on."

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

screenshot

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

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

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

                        Picture-in-Picture (PiP) Mode allows you to watch videos in a floating window (always on top of other windows), this feature was support late last year and this extension would support other sites like Youtube and so on.                    

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

ชื่อ Picture in Picture Picture in Picture
ID macihajaciflkkmodijnkfjmpikhjepe
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/picture-in-picture/macihajaciflkkmodijnkfjmpikhjepe
คำอธิบาย Provide PIP function for Youtube, Bilibili and so on.
ขนาดไฟล์ 57.96 KB
จำนวนการติดตั้ง 305
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2019-02-01
วันที่เผยแพร่ 2019-01-28
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://www.johnzhang.xyz
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "css": [
                "sites\/youtube\/pip.css"
            ],
            "js": [
                "sites\/youtube\/pip.js"
            ],
            "all_frames": true,
            "run_at": "document_start",
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ],
    "description": "Provide PIP function for Youtube, Bilibili and so on.",
    "name": "Picture in Picture",
    "version": "1.0",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "assets\/pip512.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "48": "assets\/pip48.png",
        "128": "assets\/pip128.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Alt+P",
                "mac": "Alt+P",
                "chromeos": "Alt+P",
                "linux": "Alt+P"
            }
        }
    },
    "permissions": [
        "tabs",
        ""
    ],
    "web_accessible_resources": [
        "VJB.css",
        "VJB-finishCSS.css"
    ],
    "minimum_chrome_version": "69.0.3483.0"
}