hyde — hide the YouTube video player controls
Press Ctrl+M to hide or show the YouTube video player controls.
Qu'est-ce que hyde — hide the YouTube video player controls ?
hyde — hide the YouTube video player controls est une extension Chrome développée par karmdesai, et sa fonction principale est "Press Ctrl+M to hide or show the YouTube video player controls.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension hyde — hide the YouTube video player controls
Téléchargez les fichiers d'extension hyde — hide the YouTube video player controls au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | hyde — hide the YouTube video player controls |
ID | pmkpddhfbiojipiehnejbjkgdgdpkdpb |
URL Officiel | https://chromewebstore.google.com/detail/hyde-%E2%80%94-hide-the-youtube-v/pmkpddhfbiojipiehnejbjkgdgdpkdpb |
Description | Press Ctrl+M to hide or show the YouTube video player controls. |
Taille du Fichier | 376 KB |
Nombre d'Installations | 56,829 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2022-06-10 |
Date de Publication | 2020-05-22 |
Évaluation | 4.31/5 Total 293 Évaluations |
Développeur | karmdesai |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |