Picture In Picture Tab

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

¿Qué es Picture In Picture Tab?

Picture In Picture Tab es una extensión de Chrome desarrollada por nadirlaskar, y su función principal es "Allow you to create a Picture In Picture for any tabs using streaming as PIP video".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Picture In Picture Tab

Descarga archivos de extensión Picture In Picture Tab en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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!                    

Información Básica de la Extensión

Nombre Picture In Picture Tab Picture In Picture Tab
ID bgopgnbpejocbnogmnjlbdalcgncbebc
URL Oficial https://chrome.google.com/webstore/detail/picture-in-picture-tab/bgopgnbpejocbnogmnjlbdalcgncbebc
Descripción Allow you to create a Picture In Picture for any tabs using streaming as PIP video
Tamaño del Archivo 44.67 KB
Cantidad de Instalaciones 536
Versión Actual 1.0
Última Actualización 2020-05-21
Fecha de Publicación 2020-05-21
Calificación 2.20/5 Total de 5 Calificaciones
Desarrollador nadirlaskar
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Ayuda https://twitter.com/nadirlaskar
Idiomas Soportados 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"
}