YouTube Kbd Nav

YouTube keyboard navigation to the max.

Co to jest YouTube Kbd Nav?

YouTube Kbd Nav to rozszerzenie Chrome opracowane przez philippefanaro, a jego główną funkcją jest „YouTube keyboard navigation to the max.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia YouTube Kbd Nav

Pobierz pliki rozszerzeń YouTube Kbd Nav w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa YouTube Kbd Nav YouTube Kbd Nav
ID lfhpmfgaahemloddkjioinadcoighoih
Oficjalny URL https://chromewebstore.google.com/detail/youtube-kbd-nav/lfhpmfgaahemloddkjioinadcoighoih
Opis YouTube keyboard navigation to the max.
Rozmiar pliku 74.03 KB
Liczba instalacji 25
Aktualna Wersja 1.0.2
Ostatnia Aktualizacja 2021-01-07
Data Publikacji 2020-09-29
Ocena 4.50/5 Łącznie 2 Oceny
Deweloper philippefanaro
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/FanaroEngineering/youtube_kbd_nav/
Adres URL Strony Pomocy https://github.com/FanaroEngineering/youtube_kbd_nav/
Obsługiwane Języki 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"
    }
}