Navigation Shortcuts

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

Navigation Shortcuts là gì?

Navigation Shortcuts là một tiện ích mở rộng Chrome được phát triển bởi Kenaniah Cerny, và tính năng chính của nó là "Allows next, up, prev, and top links to be used with simple keyboard shortcuts.".

Tải xuống tệp CRX của tiện ích mở rộng Navigation Shortcuts

Tải xuống các tệp mở rộng Navigation Shortcuts dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Navigation Shortcuts Navigation Shortcuts
ID ioogigbgjmadikfocfdmmdlghogaehca
URL Chính Thức https://chrome.google.com/webstore/detail/navigation-shortcuts/ioogigbgjmadikfocfdmmdlghogaehca
Mô tả Allows next, up, prev, and top links to be used with simple keyboard shortcuts.
Kích Thước Tệp 26.33 KB
Số Lần Cài Đặt 484
Phiên Bản Hiện Tại 2017.8.30
Cập Nhật Lần Cuối 2017-08-30
Ngày Phát Hành 2017-08-30
Đánh Giá 4.14/5 Tổng số 21 Đánh Giá
Nhà Phát Triển Kenaniah Cerny
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/kenaniah/chrome-next-page-plugin
URL Trang Trợ Giúp https://github.com/kenaniah/chrome-next-page-plugin
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}