Navigation Shortcuts

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

Vad är Navigation Shortcuts?

Navigation Shortcuts är en Chrome-tillägg utvecklad av Kenaniah Cerny, och dess huvudfunktion är "Allows next, up, prev, and top links to be used with simple keyboard shortcuts.".

Ladda ner Navigation Shortcuts-förlängningens CRX-fil

Ladda ner Navigation Shortcuts-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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!                    

Grundläggande Information om Tillägg

Namn Navigation Shortcuts Navigation Shortcuts
ID ioogigbgjmadikfocfdmmdlghogaehca
Officiell webbadress https://chrome.google.com/webstore/detail/navigation-shortcuts/ioogigbgjmadikfocfdmmdlghogaehca
Beskrivning Allows next, up, prev, and top links to be used with simple keyboard shortcuts.
Filstorlek 26.33 KB
Antal Installationer 484
Aktuell Version 2017.8.30
Senast Uppdaterad 2017-08-30
Publiceringsdatum 2017-08-30
Betyg 4.14/5 Totalt 21 Betyg
Utvecklare Kenaniah Cerny
Betalningssätt free
Tilläggswebbplats https://github.com/kenaniah/chrome-next-page-plugin
Hjälpsida URL https://github.com/kenaniah/chrome-next-page-plugin
Stödda Språk 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"
    }
}