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.
Cos'è Hide YouTube™ Fullscreen Controls?
Hide YouTube™ Fullscreen Controls è un'estensione di Chrome sviluppata da superananas2, e la sua funzione principale è "Hide the YouTube™ fullscreen controls with the press of a hotkey or when you move the cursor to the display border.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Hide YouTube™ Fullscreen Controls
Scarica i file di estensione Hide YouTube™ Fullscreen Controls in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | akkdefghgcakdgkmakeajmijjhlcofmk |
| URL Ufficiale | https://chromewebstore.google.com/detail/hide-youtube-fullscreen-c/akkdefghgcakdgkmakeajmijjhlcofmk |
| Descrizione | Hide the YouTube™ fullscreen controls with the press of a hotkey or when you move the cursor to the display border. |
| Dimensione del File | 20.4 KB |
| Conteggio Installazioni | 3,000 |
| Versione Corrente | 3.1.4 |
| Ultimo Aggiornamento | 2022-11-25 |
| Data di Pubblicazione | 2020-10-12 |
| Valutazione | 4.94/5 Totale 31 Valutazioni |
| Sviluppatore | superananas2 |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/nralbrecht/youtube-hide-controls |
| URL della Pagina di Aiuto | https://github.com/nralbrecht/youtube-hide-controls/issues |
| Lingue Supportate | 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"
} | |