Navigation Shortcuts

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

Was ist Navigation Shortcuts?

Navigation Shortcuts ist eine Chrome-Erweiterung, die von Kenaniah Cerny entwickelt wurde, und ihr Hauptmerkmal ist "Allows next, up, prev, and top links to be used with simple keyboard shortcuts.".

Navigation Shortcuts-Erweiterungs-CRX-Datei herunterladen

Laden Sie Navigation Shortcuts-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Navigation Shortcuts Navigation Shortcuts
ID ioogigbgjmadikfocfdmmdlghogaehca
Offizielle URL https://chrome.google.com/webstore/detail/navigation-shortcuts/ioogigbgjmadikfocfdmmdlghogaehca
Beschreibung Allows next, up, prev, and top links to be used with simple keyboard shortcuts.
Dateigröße 26.33 KB
Installationsanzahl 484
Aktuelle Version 2017.8.30
Letztes Update 2017-08-30
Veröffentlichungsdatum 2017-08-30
Bewertung 4.14/5 Insgesamt 21 Bewertungen
Entwickler Kenaniah Cerny
Zahlungsart free
Erweiterungswebsite https://github.com/kenaniah/chrome-next-page-plugin
Hilfeseite URL https://github.com/kenaniah/chrome-next-page-plugin
Unterstützte Sprachen 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"
    }
}