Video Picture-in-Picture

Continue watching your videos whilst doing something else

Video Picture-in-Picture là gì?

Video Picture-in-Picture là một tiện ích mở rộng Chrome được phát triển bởi germain, và tính năng chính của nó là "Continue watching your videos whilst doing something else".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Video 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

                        🖼 WebExtension that discovers videos in a tab and transitions them in Picture-in-Picture mode                    

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

Tên Video Picture-in-Picture Video Picture-in-Picture
ID njjicmmkcgeigdgihdhkjoahiieinmci
URL Chính Thức https://chromewebstore.google.com/detail/video-picture-in-picture/njjicmmkcgeigdgihdhkjoahiieinmci
Mô tả Continue watching your videos whilst doing something else
Kích Thước Tệp 11.29 KB
Số Lần Cài Đặt 1,734
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2021-05-05
Ngày Phát Hành 2018-11-10
Đánh Giá 5.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển germain
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/gsouquet/video-pip-webextension
URL Trang Trợ Giúp https://github.com/gsouquet/video-pip-webextension/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Picture-in-Picture",
    "version": "0.0.1",
    "description": "Continue watching your videos whilst doing something else",
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_popup": "popup\/dropdown.html",
        "default_icon": {
            "16": "img\/icon-16.png",
            "48": "img\/icon-48.png",
            "128": "img\/icon-128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/content_script.js"
            ]
        }
    ],
    "manifest_version": 2,
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    }
}