Picture in Picture

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

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 maniac, và tính năng chính của nó là "Allows switch to picture in picture mode for sites where blocked right mouse click".

Ả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

                                            

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

Tên Picture in Picture Picture in Picture
ID jkjmjfjggohhnhonoejajejmoifdbmce
URL Chính Thức https://chromewebstore.google.com/detail/picture-in-picture/jkjmjfjggohhnhonoejajejmoifdbmce
Mô tả Allows switch to picture in picture mode for sites where blocked right mouse click
Kích Thước Tệp 19.24 KB
Số Lần Cài Đặt 15
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2018-12-20
Ngày Phát Hành 2018-12-18
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển maniac
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/the-maniac/picture-in-picture
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}