YouTube Picture in Picture

Float videos from YouTube with native picture-in-picture

YouTube Picture in Picture là gì?

YouTube Picture in Picture là một tiện ích mở rộng Chrome được phát triển bởi https://brunomacedo.com.br, và tính năng chính của nó là "Float videos from YouTube with native picture-in-picture".

Ả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 YouTube Picture in Picture

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

                        Float videos from YouTube with native picture-in-picture.                    

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

Tên YouTube Picture in Picture YouTube Picture in Picture
ID flfgfoknpbdaddimcppfkkhmgckcgoan
URL Chính Thức https://chrome.google.com/webstore/detail/youtube-picture-in-pictur/flfgfoknpbdaddimcppfkkhmgckcgoan
Mô tả Float videos from YouTube with native picture-in-picture
Kích Thước Tệp 105 KB
Số Lần Cài Đặt 1,000
Phiên Bản Hiện Tại 1.1.4
Cập Nhật Lần Cuối 2019-03-18
Ngày Phát Hành 2019-03-15
Đánh Giá 3.90/5 Tổng số 10 Đánh Giá
Nhà Phát Triển https://brunomacedo.com.br
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Picture in Picture",
    "short_name": "Float Video",
    "description": "Float videos from YouTube with native picture-in-picture",
    "author": "Bruno Macedo",
    "version": "1.1.4",
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "64": "64.png",
        "128": "128.png"
    },
    "permissions": [
        "tabs"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "picture-in-picture.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "picture-in-picture.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Float Video",
        "default_popup": "picture-in-picture.html"
    }
}