YouTube Arrow Keys Fix

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

Vad är YouTube Arrow Keys Fix?

YouTube Arrow Keys Fix är en Chrome-tillägg utvecklad av jp, och dess huvudfunktion är "Fixes YouTube's inconsistent player controls. Right and left always navigate. Up and down always volume control.".

Tilläggsskärmbilder

screenshot

Ladda ner YouTube Arrow Keys Fix-förlängningens CRX-fil

Ladda ner YouTube Arrow Keys Fix-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn YouTube Arrow Keys Fix YouTube Arrow Keys Fix
ID hbnlngeljeofecndhmebgpgpccfnkgjb
Officiell webbadress https://chromewebstore.google.com/detail/youtube-arrow-keys-fix/hbnlngeljeofecndhmebgpgpccfnkgjb
Beskrivning Fixes YouTube's inconsistent player controls. Right and left always navigate. Up and down always volume control.
Filstorlek 45.87 KB
Antal Installationer 258
Aktuell Version 1.0
Senast Uppdaterad 2023-04-19
Publiceringsdatum 2023-04-18
Betyg 5.00/5 Totalt 5 Betyg
Utvecklare jp
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/JParramore/youtube-arrow-keys-fix
Hjälpsida URL https://github.com/JParramore/youtube-arrow-keys-fix
Stödda Språk 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"
            ]
        }
    ]
}