YouTube Kbd Nav

YouTube keyboard navigation to the max.

Hvad er YouTube Kbd Nav?

YouTube Kbd Nav er en Chrome-udvidelse udviklet af philippefanaro, og dens hovedfunktion er "YouTube keyboard navigation to the max.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download YouTube Kbd Nav-udvidelses-CRX-fil

Download YouTube Kbd Nav-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        An extension to ease your navigation on YouTube. Now you can use your keyboard to do 99% of the things you usually do there.

Please visit the homepage for a full table of shortcuts: https://github.com/FanaroEngineering/youtube_kbd_nav/.

Some of the shortcuts (the ordering is just for reference purposes):

- z: Cycle forwards on the thumbnails
- x: Cycle backwards on the thumbnails
- Enter: Navigate to the selected thumbnail
- q: YouTube Home
- h: YouTube History
- \: Toggle the video player's focus
- v: Like the video
- n: Dislike the video                    

Grundlæggende oplysninger om udvidelsen

Navn YouTube Kbd Nav YouTube Kbd Nav
ID lfhpmfgaahemloddkjioinadcoighoih
Officiel URL https://chromewebstore.google.com/detail/youtube-kbd-nav/lfhpmfgaahemloddkjioinadcoighoih
Beskrivelse YouTube keyboard navigation to the max.
Filstørrelse 74.03 KB
Antal Installationer 25
Nuværende Version 1.0.2
Senest Opdateret 2021-01-07
Udgivelsesdato 2020-09-29
Bedømmelse 4.50/5 Samlet 2 Bedømmelser
Udvikler philippefanaro
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/FanaroEngineering/youtube_kbd_nav/
Hjælpeside-URL https://github.com/FanaroEngineering/youtube_kbd_nav/
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Kbd Nav",
    "author": "Philippe Fanaro",
    "version": "1.0.2",
    "description": "YouTube keyboard navigation to the max.",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.studio.youtube.com\/*"
            ],
            "js": [
                "content.dart.js"
            ]
        }
    ],
    "permissions": [
        "clipboardWrite"
    ],
    "icons": {
        "128": "favicon.png"
    }
}