PiP Anywhere

Allows activating picture in picture mode from html5 players that block right click

PiP Anywhere là gì?

PiP Anywhere là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Allows activating picture in picture mode from html5 players that block right 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 PiP Anywhere

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

                        Can be used to activate picture in picture mode for html 5 players that dont allow right click                    

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

Tên PiP Anywhere PiP Anywhere
ID lkhcdbmhbdacbjhmdgccgidfifehcjne
URL Chính Thức https://chromewebstore.google.com/detail/pip-anywhere/lkhcdbmhbdacbjhmdgccgidfifehcjne
Mô tả Allows activating picture in picture mode from html5 players that block right click
Kích Thước Tệp 5.14 KB
Số Lần Cài Đặt 25
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2019-01-05
Ngày Phát Hành 2019-01-05
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PiP Anywhere",
    "version": "1.2",
    "description": "Allows activating picture in picture mode from html5 players that block right click",
    "manifest_version": 2,
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/watch\/*",
                "https:\/\/tiwi.kiwi\/*",
                "https:\/\/mp4upload.com\/*",
                "https:\/\/streamango.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true
        }
    ]
}