Navigation Shortcuts

Allows next, up, prev, and top links to be used with simple keyboard shortcuts.

O que é Navigation Shortcuts?

Navigation Shortcuts é uma extensão do Chrome desenvolvida por Kenaniah Cerny, e sua principal característica é "Allows next, up, prev, and top links to be used with simple keyboard shortcuts.".

Baixar o arquivo CRX da Extensão Navigation Shortcuts

Baixe arquivos de extensão Navigation Shortcuts 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

                        A must-have extension for reading online books, documentation, tutorials, and blogs! Easily navigate in between webpages with these extremely simple keyboard shortcuts:

Space Bar -  navigates to the next page when scrolled to the bottom
Shift + Space Bar - navigates to the previous page when scrolled to the top. 

(Use the Option key instead of the Ctrl key on Mac)

Ctrl + Right - navigates to the next page
Ctrl + Left - navigates to the previous page
Ctrl + Up - navigates to section's index page
Ctrl + Shift + Up - navigates to the top page

Uses HTML's rel attribute and smart link detection to determine where to go. Currently rel="next", rel="prev", rel="up", and rel="top" are supported.

Source code at https://github.com/kenaniah/chrome-navigation-plugin/

Improvements and suggestions are welcome!                    

Informações Básicas da Extensão

Nome Navigation Shortcuts Navigation Shortcuts
ID ioogigbgjmadikfocfdmmdlghogaehca
URL Oficial https://chrome.google.com/webstore/detail/navigation-shortcuts/ioogigbgjmadikfocfdmmdlghogaehca
Descrição Allows next, up, prev, and top links to be used with simple keyboard shortcuts.
Tamanho do Arquivo 26.33 KB
Contagem de Instalações 484
Versão Atual 2017.8.30
Última Atualização 2017-08-30
Data de Publicação 2017-08-30
Classificação 4.14/5 Total de 21 Avaliações
Desenvolvedor Kenaniah Cerny
Tipo de Pagamento free
Site da Extensão https://github.com/kenaniah/chrome-next-page-plugin
URL da Página de Ajuda https://github.com/kenaniah/chrome-next-page-plugin
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Navigation Shortcuts",
    "version": "2017.8.30",
    "manifest_version": 2,
    "description": "Allows next, up, prev, and top links to be used with simple keyboard shortcuts.",
    "permissions": [
        "history"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    }
}