YouTube Arrow Keys Fix

Fixes YouTube's inconsistent player controls. Right and left always navigate. Up and down always volume control.

Cos'è YouTube Arrow Keys Fix?

YouTube Arrow Keys Fix è un'estensione di Chrome sviluppata da jp, e la sua funzione principale è "Fixes YouTube's inconsistent player controls. Right and left always navigate. Up and down always volume control.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione YouTube Arrow Keys Fix

Scarica i file di estensione YouTube Arrow Keys Fix 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

                        This extension ensures that the left and right arrow keys always navigate the video timeline, while the up and down arrow keys always control the volume, regardless of the focus on the player.                    

Informazioni di Base sull'Estensione

Nome YouTube Arrow Keys Fix YouTube Arrow Keys Fix
ID hbnlngeljeofecndhmebgpgpccfnkgjb
URL Ufficiale https://chromewebstore.google.com/detail/youtube-arrow-keys-fix/hbnlngeljeofecndhmebgpgpccfnkgjb
Descrizione Fixes YouTube's inconsistent player controls. Right and left always navigate. Up and down always volume control.
Dimensione del File 45.87 KB
Conteggio Installazioni 258
Versione Corrente 1.0
Ultimo Aggiornamento 2023-04-19
Data di Pubblicazione 2023-04-18
Valutazione 5.00/5 Totale 5 Valutazioni
Sviluppatore jp
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/JParramore/youtube-arrow-keys-fix
URL della Pagina di Aiuto https://github.com/JParramore/youtube-arrow-keys-fix
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Arrow Keys Fix",
    "version": "1.0",
    "description": "Fixes YouTube's inconsistent player controls. Right and left always navigate. Up and down always volume control.",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}