hyde — hide the YouTube video player controls
Press Ctrl+M to hide or show the YouTube video player controls.
Vad är hyde — hide the YouTube video player controls?
hyde — hide the YouTube video player controls är en Chrome-tillägg utvecklad av karmdesai, och dess huvudfunktion är "Press Ctrl+M to hide or show the YouTube video player controls.".
Tilläggsskärmbilder
Ladda ner hyde — hide the YouTube video player controls-förlängningens CRX-fil
Ladda ner hyde — hide the YouTube video player controls-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | hyde — hide the YouTube video player controls |
ID | pmkpddhfbiojipiehnejbjkgdgdpkdpb |
Officiell webbadress | https://chromewebstore.google.com/detail/hyde-%E2%80%94-hide-the-youtube-v/pmkpddhfbiojipiehnejbjkgdgdpkdpb |
Beskrivning | Press Ctrl+M to hide or show the YouTube video player controls. |
Filstorlek | 376 KB |
Antal Installationer | 56,829 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2022-06-10 |
Publiceringsdatum | 2020-05-22 |
Betyg | 4.31/5 Totalt 293 Betyg |
Utvecklare | karmdesai |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } |