hyde — hide the YouTube video player controls

Press Ctrl+M to hide or show the YouTube video player controls.

Cos'è hyde — hide the YouTube video player controls?

hyde — hide the YouTube video player controls è un'estensione di Chrome sviluppata da karmdesai, e la sua funzione principale è "Press Ctrl+M to hide or show the YouTube video player controls.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione hyde — hide the YouTube video player controls

Scarica i file di estensione hyde — hide the YouTube video player controls 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

                        When you pause a YouTube video, the player controls don't disappear. That makes it really hard to take a clean screenshot of the video. The controls also block your view, which can get really annoying. Hyde is a simple Chrome extension that allows you to hide or show the video player controls easily. 

⭐ Simply use the keyboard shortcut Ctrl+M to hide the controls or show them again.                    

Informazioni di Base sull'Estensione

Nome hyde — hide the YouTube video player controls hyde — hide the YouTube video player controls
ID pmkpddhfbiojipiehnejbjkgdgdpkdpb
URL Ufficiale https://chromewebstore.google.com/detail/hyde-%E2%80%94-hide-the-youtube-v/pmkpddhfbiojipiehnejbjkgdgdpkdpb
Descrizione Press Ctrl+M to hide or show the YouTube video player controls.
Dimensione del File 376 KB
Conteggio Installazioni 56,829
Versione Corrente 1.1
Ultimo Aggiornamento 2022-06-10
Data di Pubblicazione 2020-05-22
Valutazione 4.31/5 Totale 293 Valutazioni
Sviluppatore karmdesai
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "hyde \u2014 hide the YouTube video player controls",
    "version": "1.1",
    "description": "Press Ctrl+M to hide or show the YouTube video player controls.",
    "icons": {
        "16": "img\/icon16.png",
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": false
    },
    "commands": {
        "hide": {
            "suggested_key": {
                "default": "Ctrl+M"
            },
            "description": "hide\/show controls"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.youtube.com\/watch?*",
                "https:\/\/*.youtube.com\/watch?*"
            ],
            "js": [
                "src\/hide.js",
                "src\/show.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}