PiP Anywhere

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

¿Qué es PiP Anywhere?

PiP Anywhere es una extensión de Chrome desarrollada por Unknown, y su función principal es "Allows activating picture in picture mode from html5 players that block right click".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión PiP Anywhere

Descarga archivos de extensión PiP Anywhere 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

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

Información Básica de la Extensión

Nombre PiP Anywhere PiP Anywhere
ID lkhcdbmhbdacbjhmdgccgidfifehcjne
URL Oficial https://chromewebstore.google.com/detail/pip-anywhere/lkhcdbmhbdacbjhmdgccgidfifehcjne
Descripción Allows activating picture in picture mode from html5 players that block right click
Tamaño del Archivo 5.14 KB
Cantidad de Instalaciones 25
Versión Actual 1.2
Última Actualización 2019-01-05
Fecha de Publicación 2019-01-05
Desarrollador Unknown
Tipo de Pago free
Idiomas Soportados 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
        }
    ]
}