Hide YouTube™ Fullscreen Controls
Hide the YouTube™ fullscreen controls with the press of a hotkey or when you move the cursor to the display border.
O que é Hide YouTube™ Fullscreen Controls?
Hide YouTube™ Fullscreen Controls é uma extensão do Chrome desenvolvida por superananas2, e sua principal característica é "Hide the YouTube™ fullscreen controls with the press of a hotkey or when you move the cursor to the display border.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Hide YouTube™ Fullscreen Controls
Baixe arquivos de extensão Hide YouTube™ Fullscreen 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
Does YouTube™ leave the video controls visible for longer than you like? Do you want to have a hotkey that toggles the controls? This add-on let's you: - Hide the video controls when you move the cursor to any border - Hide the video controls and only show them when you want. - Toggle the controls when you press a hotkey - Hide some video overlays - Hide the play/pause animation In the add-on settings you can configure the individual sides as well as the hotkey. If you experience any issues, please let me know at https://github.com/nralbrecht/youtube-hide-controls/issues Note: The add-on currently does not work with embedded YouTube™ players. YouTube™ is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.
Informações Básicas da Extensão
Nome | Hide YouTube™ Fullscreen Controls |
ID | akkdefghgcakdgkmakeajmijjhlcofmk |
URL Oficial | https://chromewebstore.google.com/detail/hide-youtube-fullscreen-c/akkdefghgcakdgkmakeajmijjhlcofmk |
Descrição | Hide the YouTube™ fullscreen controls with the press of a hotkey or when you move the cursor to the display border. |
Tamanho do Arquivo | 20.4 KB |
Contagem de Instalações | 3,000 |
Versão Atual | 3.1.4 |
Última Atualização | 2022-11-25 |
Data de Publicação | 2020-10-12 |
Classificação | 4.94/5 Total de 31 Avaliações |
Desenvolvedor | superananas2 |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/nralbrecht/youtube-hide-controls |
URL da Página de Ajuda | https://github.com/nralbrecht/youtube-hide-controls/issues |
Idiomas Suportados | de,en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_extensionName__", "description": "__MSG_extensionDescription__", "homepage_url": "https:\/\/github.com\/nralbrecht\/youtube-hide-controls", "default_locale": "en", "icons": { "128": "icon_128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content-script.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ { "resources": [ "player.js", "player.css", "icon.svg", "options\/options.html" ], "matches": [ "*:\/\/*.youtube.com\/*" ] } ], "options_ui": { "page": "options\/options.html" }, "permissions": [ "storage" ], "host_permissions": [ "*:\/\/www.youtube.com\/*" ], "version": "3.1.4" } |