HideYoutubeControls

Hide youtube controls when you are on a youtube page

Cos'è HideYoutubeControls?

HideYoutubeControls è un'estensione di Chrome sviluppata da Ruchunteur, e la sua funzione principale è "Hide youtube controls when you are on a youtube page".

Scarica il file CRX dell'estensione HideYoutubeControls

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

                        Hide/show the controls of a video on youtube. (Usefull if you pause the video and the control is above the very thing you wanted to see. Such as subtitles)                    

Informazioni di Base sull'Estensione

Nome HideYoutubeControls HideYoutubeControls
ID iflpjkbpegjcibknhepnfhbigholnolp
URL Ufficiale https://chromewebstore.google.com/detail/hideyoutubecontrols/iflpjkbpegjcibknhepnfhbigholnolp
Descrizione Hide youtube controls when you are on a youtube page
Dimensione del File 6.32 KB
Conteggio Installazioni 21
Versione Corrente 1.0
Ultimo Aggiornamento 2017-03-25
Data di Pubblicazione 2017-03-25
Valutazione 4.33/5 Totale 3 Valutazioni
Sviluppatore Ruchunteur
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HideYoutubeControls",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Hide youtube controls when you are on a youtube page",
    "browser_action": {
        "default_icon": "icone.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "popup.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}