Navigation Shortcuts

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

¿Qué es Navigation Shortcuts?

Navigation Shortcuts es una extensión de Chrome desarrollada por Kenaniah Cerny, y su función principal es "Allows next, up, prev, and top links to be used with simple keyboard shortcuts.".

Descargar Archivo CRX de la Extensión Navigation Shortcuts

Descarga archivos de extensión Navigation Shortcuts en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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!                    

Información Básica de la Extensión

Nombre Navigation Shortcuts Navigation Shortcuts
ID ioogigbgjmadikfocfdmmdlghogaehca
URL Oficial https://chrome.google.com/webstore/detail/navigation-shortcuts/ioogigbgjmadikfocfdmmdlghogaehca
Descripción Allows next, up, prev, and top links to be used with simple keyboard shortcuts.
Tamaño del Archivo 26.33 KB
Cantidad de Instalaciones 484
Versión Actual 2017.8.30
Última Actualización 2017-08-30
Fecha de Publicación 2017-08-30
Calificación 4.14/5 Total de 21 Calificaciones
Desarrollador Kenaniah Cerny
Tipo de Pago free
Sitio Web de la Extensión https://github.com/kenaniah/chrome-next-page-plugin
URL de la Página de Ayuda https://github.com/kenaniah/chrome-next-page-plugin
Idiomas Soportados 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"
    }
}