YouTube Kbd Nav

YouTube keyboard navigation to the max.

O que é YouTube Kbd Nav?

YouTube Kbd Nav é uma extensão do Chrome desenvolvida por philippefanaro, e sua principal característica é "YouTube keyboard navigation to the max.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão YouTube Kbd Nav

Baixe arquivos de extensão YouTube Kbd Nav no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome YouTube Kbd Nav YouTube Kbd Nav
ID lfhpmfgaahemloddkjioinadcoighoih
URL Oficial https://chromewebstore.google.com/detail/youtube-kbd-nav/lfhpmfgaahemloddkjioinadcoighoih
Descrição YouTube keyboard navigation to the max.
Tamanho do Arquivo 74.03 KB
Contagem de Instalações 25
Versão Atual 1.0.2
Última Atualização 2021-01-07
Data de Publicação 2020-09-29
Classificação 4.50/5 Total de 2 Avaliações
Desenvolvedor philippefanaro
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/FanaroEngineering/youtube_kbd_nav/
URL da Página de Ajuda https://github.com/FanaroEngineering/youtube_kbd_nav/
Idiomas Suportados 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"
    }
}