Youtube Embed

This extension adds an additional button to the youtube player that toggles embedded mode.

Cos'è Youtube Embed?

Youtube Embed è un'estensione di Chrome sviluppata da rosca.valentin2012, e la sua funzione principale è "This extension adds an additional button to the youtube player that toggles embedded mode.".

Scarica il file CRX dell'estensione Youtube Embed

Scarica i file di estensione Youtube Embed 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

                        This extension adds an additional button to the youtube player that toggles embedded mode.                    

Informazioni di Base sull'Estensione

Nome Youtube Embed Youtube Embed
ID hbeapjkbnlomlkplfchcobioeeockkpd
URL Ufficiale https://chrome.google.com/webstore/detail/youtube-embed/hbeapjkbnlomlkplfchcobioeeockkpd
Descrizione This extension adds an additional button to the youtube player that toggles embedded mode.
Dimensione del File 44.96 KB
Conteggio Installazioni 151
Versione Corrente 1.1.2
Ultimo Aggiornamento 2017-06-26
Data di Pubblicazione 2017-06-26
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore rosca.valentin2012
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.1.2",
    "name": "Youtube Embed",
    "author": "Valentin Rosca",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.youtube.com\/embed\/*",
                "https:\/\/www.youtube.com\/watch*"
            ],
            "js": [
                "jquery.min.js",
                "youtube_embed.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}