Navigation Shortcuts

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

什麼是Navigation Shortcuts?

Navigation Shortcuts是由Kenaniah Cerny開發的Chrome擴展程式,該擴展的主要功能是“Allows next, up, prev, and top links to be used with simple keyboard shortcuts.”。

下載Navigation Shortcuts擴展crx文件

下載Navigation Shortcuts擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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!                    

擴展基本資訊

名稱 Navigation Shortcuts Navigation Shortcuts
ID ioogigbgjmadikfocfdmmdlghogaehca
官方網址 https://chrome.google.com/webstore/detail/navigation-shortcuts/ioogigbgjmadikfocfdmmdlghogaehca
簡介 Allows next, up, prev, and top links to be used with simple keyboard shortcuts.
檔案大小 26.33 KB
安裝次數 484
目前版本 2017.8.30
更新時間 2017-08-30
上架時間 2017-08-30
評分 4.14/5 共 21 次評分
開發者 Kenaniah Cerny
付費類型 free
擴展官網 https://github.com/kenaniah/chrome-next-page-plugin
說明頁面URL https://github.com/kenaniah/chrome-next-page-plugin
支援的語言 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"
    }
}