Previous and Next page keyboard navigation

Allows you to navigate any paged website using the left and right keyboard keys.

Previous and Next page keyboard navigation là gì?

Previous and Next page keyboard navigation là một tiện ích mở rộng Chrome được phát triển bởi manticorp1234, và tính năng chính của nó là "Allows you to navigate any paged website using the left and right keyboard keys.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Previous and Next page keyboard navigation

Tải xuống các tệp mở rộng Previous and Next page keyboard navigation 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

                        This extensions basically allows you to navigate any paginated website just using the left and right keys.

Very simple app, to turn off just click the icon in the top right.

Open source, code hosted here:

https://github.com/manticorp/Chrome-Keyboard-Navigation

If you have any suggestions, bugs or you know of sites that don't work, then file a bug report on the github page or contact me through there.                    

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

Tên Previous and Next page keyboard navigation Previous and Next page keyboard navigation
ID bgddcngmfadknajipncoemekkikibfhg
URL Chính Thức https://chromewebstore.google.com/detail/previous-and-next-page-ke/bgddcngmfadknajipncoemekkikibfhg
Mô tả Allows you to navigate any paged website using the left and right keyboard keys.
Kích Thước Tệp 44.05 KB
Số Lần Cài Đặt 696
Phiên Bản Hiện Tại 0.43
Cập Nhật Lần Cuối 2016-04-10
Ngày Phát Hành 2016-04-10
Đánh Giá 4.12/5 Tổng số 25 Đánh Giá
Nhà Phát Triển manticorp1234
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/manticorp/Chrome-Keyboard-Navigation
URL Trang Trợ Giúp https://github.com/manticorp/Chrome-Keyboard-Navigation
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Previous and Next page keyboard navigation",
    "short_name": "Prev\/Next Keys",
    "description": "Allows you to navigate any paged website using the left and right keyboard keys.",
    "author": "Harry Mustoe-Playfair",
    "version": "0.43",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Toggle Keyboard Navigation"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "page": "background.html"
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "content_script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "options_page": "options.html"
}