hyde — hide the YouTube video player controls
Press Ctrl+M to hide or show the YouTube video player controls.
O que é hyde — hide the YouTube video player controls?
hyde — hide the YouTube video player controls é uma extensão do Chrome desenvolvida por karmdesai, e sua principal característica é "Press Ctrl+M to hide or show the YouTube video player controls.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão hyde — hide the YouTube video player controls
Baixe arquivos de extensão hyde — hide the YouTube video player controls no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | hyde — hide the YouTube video player controls |
ID | pmkpddhfbiojipiehnejbjkgdgdpkdpb |
URL Oficial | https://chromewebstore.google.com/detail/hyde-%E2%80%94-hide-the-youtube-v/pmkpddhfbiojipiehnejbjkgdgdpkdpb |
Descrição | Press Ctrl+M to hide or show the YouTube video player controls. |
Tamanho do Arquivo | 376 KB |
Contagem de Instalações | 56,829 |
Versão Atual | 1.1 |
Última Atualização | 2022-06-10 |
Data de Publicação | 2020-05-22 |
Classificação | 4.31/5 Total de 293 Avaliações |
Desenvolvedor | karmdesai |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } |