Picture In Picture Tab

Allow you to create a Picture In Picture for any tabs using streaming as PIP video

什么是Picture In Picture Tab?

Picture In Picture Tab是由nadirlaskar开发的Chrome扩展程序,该扩展的主要功能是“Allow you to create a Picture In Picture for any tabs using streaming as PIP video”。

扩展截图

screenshot

下载Picture In Picture Tab扩展crx文件

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

扩展使用说明

                        Pin any chrome tab or screen using Picture-in-Picture Mode.
"Picture In Picture Tab" allows you to pin a tab in a floating window (always on top of other windows) so you can keep an eye on what you’re doing on other tabs while interacting with other sites, or applications.

Keyboard shortcut: Alt + Shift + P (⌥ + Shift + P on macOS).

You can also use the Browser Action Icon to toggle the tabs to pin or unpin as PIP.
Enjoy!                    

扩展基本信息

名称 Picture In Picture Tab Picture In Picture Tab
ID bgopgnbpejocbnogmnjlbdalcgncbebc
官方URL https://chrome.google.com/webstore/detail/picture-in-picture-tab/bgopgnbpejocbnogmnjlbdalcgncbebc
简介 Allow you to create a Picture In Picture for any tabs using streaming as PIP video
文件大小 44.67 KB
安装次数 536
当前版本 1.0
更新时间 2020-05-21
上架时间 2020-05-21
评分 2.20/5 共5次评分
开发者 nadirlaskar
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://twitter.com/nadirlaskar
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Picture In Picture Tab",
    "version": "1.0",
    "description": "Allow you to create a Picture In Picture for any tabs using streaming as PIP video",
    "manifest_version": 2,
    "permissions": [],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+P",
                "mac": "Alt+Shift+P"
            },
            "description": "pipTab"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "RecordRTC.js",
                "playerScript.js"
            ]
        }
    ],
    "browser_action": [],
    "icons": {
        "16": "images\/16.png",
        "32": "images\/32.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "minimum_chrome_version": "69.0.3483.0"
}