Picture in Picture

Allows switch to picture in picture mode for sites where blocked right mouse click

什么是Picture in Picture?

Picture in Picture是由maniac开发的Chrome扩展程序,该扩展的主要功能是“Allows switch to picture in picture mode for sites where blocked right mouse click”。

扩展截图

screenshot

下载Picture in Picture扩展crx文件

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

扩展使用说明

                                            

扩展基本信息

名称 Picture in Picture Picture in Picture
ID jkjmjfjggohhnhonoejajejmoifdbmce
官方URL https://chromewebstore.google.com/detail/picture-in-picture/jkjmjfjggohhnhonoejajejmoifdbmce
简介 Allows switch to picture in picture mode for sites where blocked right mouse click
文件大小 19.24 KB
安装次数 15
当前版本 0.0.1
更新时间 2018-12-20
上架时间 2018-12-18
评分 5.00/5 共1次评分
开发者 maniac
付费类型 free
扩展官网 https://github.com/the-maniac/picture-in-picture
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Picture in Picture",
    "short_name": "PiP",
    "description": "Allows switch to picture in picture mode for sites where blocked right mouse click",
    "version": "0.0.1",
    "icons": {
        "16": "icon16.png",
        "24": "icon24.png",
        "32": "icon32.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon32.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "main.js"
            ],
            "matches": [
                ""
            ]
        },
        {
            "js": [
                "others.js"
            ],
            "matches": [
                ""
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "activeTab"
    ]
}