PiP Anywhere

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

Cos'è PiP Anywhere?

PiP Anywhere è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Allows activating picture in picture mode from html5 players that block right click".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione PiP Anywhere

Scarica i file di estensione PiP Anywhere in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome PiP Anywhere PiP Anywhere
ID lkhcdbmhbdacbjhmdgccgidfifehcjne
URL Ufficiale https://chromewebstore.google.com/detail/pip-anywhere/lkhcdbmhbdacbjhmdgccgidfifehcjne
Descrizione Allows activating picture in picture mode from html5 players that block right click
Dimensione del File 5.14 KB
Conteggio Installazioni 25
Versione Corrente 1.2
Ultimo Aggiornamento 2019-01-05
Data di Pubblicazione 2019-01-05
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate 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
        }
    ]
}