PiP Anywhere

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

什么是PiP Anywhere?

PiP Anywhere是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Allows activating picture in picture mode from html5 players that block right click”。

扩展截图

screenshot

下载PiP Anywhere扩展crx文件

下载PiP Anywhere扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 PiP Anywhere PiP Anywhere
ID lkhcdbmhbdacbjhmdgccgidfifehcjne
官方URL https://chromewebstore.google.com/detail/pip-anywhere/lkhcdbmhbdacbjhmdgccgidfifehcjne
简介 Allows activating picture in picture mode from html5 players that block right click
文件大小 5.14 KB
安装次数 25
当前版本 1.2
更新时间 2019-01-05
上架时间 2019-01-05
开发者 Unknown
付费类型 free
支持的语言 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
        }
    ]
}