hyde — hide the YouTube video player controls
Press Ctrl+M to hide or show the YouTube video player controls.
Wat is hyde — hide the YouTube video player controls?
hyde — hide the YouTube video player controls is een Chrome-extensie ontwikkeld door karmdesai, en de belangrijkste functie is "Press Ctrl+M to hide or show the YouTube video player controls.".
Extensie Screenshots
Download het CRX-bestand van de extensie hyde — hide the YouTube video player controls
Download hyde — hide the YouTube video player controls-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | pmkpddhfbiojipiehnejbjkgdgdpkdpb |
| Officiële URL | https://chromewebstore.google.com/detail/hyde-%E2%80%94-hide-the-youtube-v/pmkpddhfbiojipiehnejbjkgdgdpkdpb |
| Beschrijving | Press Ctrl+M to hide or show the YouTube video player controls. |
| Bestandsgrootte | 376 KB |
| Aantal Installaties | 56,829 |
| Huidige Versie | 1.1 |
| Laatst Bijgewerkt | 2022-06-10 |
| Publicatiedatum | 2020-05-22 |
| Beoordeling | 4.31/5 Totaal 293 Beoordelingen |
| Ontwikkelaar | karmdesai |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
]
} | |