Navigation Shortcuts

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

Cos'è Navigation Shortcuts?

Navigation Shortcuts è un'estensione di Chrome sviluppata da Kenaniah Cerny, e la sua funzione principale è "Allows next, up, prev, and top links to be used with simple keyboard shortcuts.".

Scarica il file CRX dell'estensione Navigation Shortcuts

Scarica i file di estensione Navigation Shortcuts in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Navigation Shortcuts Navigation Shortcuts
ID ioogigbgjmadikfocfdmmdlghogaehca
URL Ufficiale https://chrome.google.com/webstore/detail/navigation-shortcuts/ioogigbgjmadikfocfdmmdlghogaehca
Descrizione Allows next, up, prev, and top links to be used with simple keyboard shortcuts.
Dimensione del File 26.33 KB
Conteggio Installazioni 484
Versione Corrente 2017.8.30
Ultimo Aggiornamento 2017-08-30
Data di Pubblicazione 2017-08-30
Valutazione 4.14/5 Totale 21 Valutazioni
Sviluppatore Kenaniah Cerny
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/kenaniah/chrome-next-page-plugin
URL della Pagina di Aiuto https://github.com/kenaniah/chrome-next-page-plugin
Lingue Supportate 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"
    }
}