Arrow Browse

Allows use of arrow keys to move to next and previous pages.

Arrow Browse là gì?

Arrow Browse là một tiện ích mở rộng Chrome được phát triển bởi benjamin12g, và tính năng chính của nó là "Allows use of arrow keys to move to next and previous pages.".

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

screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Arrow Browse 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

                        Searches pages for links or buttons that contain some reference to "next" or "previous" and trigger those links/buttons on the pressing of the left or right arrow keys on the keyboard (left for previous, right for next). 

Its great for reading through tutorials, web comics, blogs, video blogs or really any content that comes in a linear series of pages.                    

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

Tên Arrow Browse Arrow Browse
ID mmnojcmflanomipfjmbmnafphfcigage
URL Chính Thức https://chrome.google.com/webstore/detail/arrow-browse/mmnojcmflanomipfjmbmnafphfcigage
Mô tả Allows use of arrow keys to move to next and previous pages.
Kích Thước Tệp 11.57 KB
Số Lần Cài Đặt 25
Phiên Bản Hiện Tại 1.1.1
Cập Nhật Lần Cuối 2015-02-12
Ngày Phát Hành 2015-02-12
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển benjamin12g
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Arrow Browse",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "description": "Allows use of arrow keys to move to next and previous pages.",
    "version": "1.1.1",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon16.png",
        "default_title": "Arrow Browse",
        "default_popup": "extension.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ]
}