Picture in Picture

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

Cos'è Picture in Picture?

Picture in Picture è un'estensione di Chrome sviluppata da maniac, e la sua funzione principale è "Allows switch to picture in picture mode for sites where blocked right mouse click".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Picture in Picture

Scarica i file di estensione Picture in Picture 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

                                            

Informazioni di Base sull'Estensione

Nome Picture in Picture Picture in Picture
ID jkjmjfjggohhnhonoejajejmoifdbmce
URL Ufficiale https://chromewebstore.google.com/detail/picture-in-picture/jkjmjfjggohhnhonoejajejmoifdbmce
Descrizione Allows switch to picture in picture mode for sites where blocked right mouse click
Dimensione del File 19.24 KB
Conteggio Installazioni 15
Versione Corrente 0.0.1
Ultimo Aggiornamento 2018-12-20
Data di Pubblicazione 2018-12-18
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore maniac
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/the-maniac/picture-in-picture
Lingue Supportate 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"
    ]
}