Video picture in picture

Video picture in picture

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 Oscar de Dios, và tính năng chính của nó là "Video 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 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

                        Chrome extension to open the video of the active page to picture in picture mode.
It will open a litle window "always on top", it will be possible to use the computer in other windows while you watch the video with 
the video always visible.

The code is in: https://github.com/OscarDeDios/pictureInPictureExtension

The extension uses the new picture in picture API: https://wicg.github.io/picture-in-picture/                    

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

Tên Video picture in picture Video picture in picture
ID bfncjmnhlgddppdmogacohjjieiahelp
URL Chính Thức https://chromewebstore.google.com/detail/video-picture-in-picture/bfncjmnhlgddppdmogacohjjieiahelp
Mô tả Video picture in picture
Kích Thước Tệp 5.87 KB
Số Lần Cài Đặt 578
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2019-03-21
Ngày Phát Hành 2019-03-16
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Oscar de Dios
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://www.noteboardapp.com/policy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video picture in picture",
    "manifest_version": 2,
    "version": "1.1",
    "short_name": "Video picture in picture",
    "icons": {
        "48": "img\/pipVideo.png",
        "128": "img\/pipVideo128.png"
    },
    "browser_action": {
        "default_title": "__MSG_extName__",
        "default_icon": {
            "19": "img\/pipVideo.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "description": "Video picture in picture",
    "permissions": [
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}