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
公式URL 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"
    }
}