Picture in Picture

Allows switch to picture in picture mode for sites where blocked right mouse click

Picture in Pictureคืออะไร?

Picture in Picture เป็นส่วนขยายของ Chrome ที่พัฒนาโดย maniac และคุณลักษณะหลักของมันคือ "Allows switch to picture in picture mode for sites where blocked right mouse click"

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

screenshot

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

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

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

                                            

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

ชื่อ Picture in Picture Picture in Picture
ID jkjmjfjggohhnhonoejajejmoifdbmce
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/picture-in-picture/jkjmjfjggohhnhonoejajejmoifdbmce
คำอธิบาย Allows switch to picture in picture mode for sites where blocked right mouse click
ขนาดไฟล์ 19.24 KB
จำนวนการติดตั้ง 15
เวอร์ชันปัจจุบัน 0.0.1
อัปเดตครั้งล่าสุด 2018-12-20
วันที่เผยแพร่ 2018-12-18
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา maniac
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/the-maniac/picture-in-picture
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Picture in Picture",
    "short_name": "PiP",
    "description": "Allows switch to picture in picture mode for sites where blocked right mouse click",
    "version": "0.0.1",
    "icons": {
        "16": "icon16.png",
        "24": "icon24.png",
        "32": "icon32.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon32.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "main.js"
            ],
            "matches": [
                ""
            ]
        },
        {
            "js": [
                "others.js"
            ],
            "matches": [
                ""
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "activeTab"
    ]
}