Picture in Picture

Provide PIP function for Youtube, Bilibili and so on.

Picture in Picture là gì?

Picture in Picture là một tiện ích mở rộng Chrome được phát triển bởi https://www.johnzhang.xyz, và tính năng chính của nó là "Provide PIP function for Youtube, Bilibili and so on.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Picture in Picture

Tải xuống các tệp mở rộng Picture in Picture dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Picture in Picture Picture in Picture
ID macihajaciflkkmodijnkfjmpikhjepe
URL Chính Thức https://chrome.google.com/webstore/detail/picture-in-picture/macihajaciflkkmodijnkfjmpikhjepe
Mô tả Provide PIP function for Youtube, Bilibili and so on.
Kích Thước Tệp 57.96 KB
Số Lần Cài Đặt 305
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2019-02-01
Ngày Phát Hành 2019-01-28
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://www.johnzhang.xyz
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
}