YouTube Arrow Keys Fix

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

Was ist YouTube Arrow Keys Fix?

YouTube Arrow Keys Fix ist eine Chrome-Erweiterung, die von jp entwickelt wurde, und ihr Hauptmerkmal ist "Fixes YouTube's inconsistent player controls. Right and left always navigate. Up and down always volume control.".

Erweiterungsscreenshots

screenshot

YouTube Arrow Keys Fix-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube Arrow Keys Fix-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name YouTube Arrow Keys Fix YouTube Arrow Keys Fix
ID hbnlngeljeofecndhmebgpgpccfnkgjb
Offizielle URL https://chromewebstore.google.com/detail/youtube-arrow-keys-fix/hbnlngeljeofecndhmebgpgpccfnkgjb
Beschreibung Fixes YouTube's inconsistent player controls. Right and left always navigate. Up and down always volume control.
Dateigröße 45.87 KB
Installationsanzahl 258
Aktuelle Version 1.0
Letztes Update 2023-04-19
Veröffentlichungsdatum 2023-04-18
Bewertung 5.00/5 Insgesamt 5 Bewertungen
Entwickler jp
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/JParramore/youtube-arrow-keys-fix
Hilfeseite URL https://github.com/JParramore/youtube-arrow-keys-fix
Unterstützte Sprachen 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"
            ]
        }
    ]
}