Navigation Shortcuts

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

Wat is Navigation Shortcuts?

Navigation Shortcuts is een Chrome-extensie ontwikkeld door Kenaniah Cerny, en de belangrijkste functie is "Allows next, up, prev, and top links to be used with simple keyboard shortcuts.".

Download het CRX-bestand van de extensie Navigation Shortcuts

Download Navigation Shortcuts-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam Navigation Shortcuts Navigation Shortcuts
ID ioogigbgjmadikfocfdmmdlghogaehca
Officiële URL https://chrome.google.com/webstore/detail/navigation-shortcuts/ioogigbgjmadikfocfdmmdlghogaehca
Beschrijving Allows next, up, prev, and top links to be used with simple keyboard shortcuts.
Bestandsgrootte 26.33 KB
Aantal Installaties 484
Huidige Versie 2017.8.30
Laatst Bijgewerkt 2017-08-30
Publicatiedatum 2017-08-30
Beoordeling 4.14/5 Totaal 21 Beoordelingen
Ontwikkelaar Kenaniah Cerny
Betalingswijze free
Extensiewebsite https://github.com/kenaniah/chrome-next-page-plugin
Help Pagina-URL https://github.com/kenaniah/chrome-next-page-plugin
Ondersteunde Talen 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"
    }
}