Arrow Browse

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

什么是Arrow Browse?

Arrow Browse是由benjamin12g开发的Chrome扩展程序,该扩展的主要功能是“Allows use of arrow keys to move to next and previous pages.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Arrow Browse扩展crx文件

下载Arrow Browse扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Arrow Browse Arrow Browse
ID mmnojcmflanomipfjmbmnafphfcigage
官方URL https://chrome.google.com/webstore/detail/arrow-browse/mmnojcmflanomipfjmbmnafphfcigage
简介 Allows use of arrow keys to move to next and previous pages.
文件大小 11.57 KB
安装次数 25
当前版本 1.1.1
更新时间 2015-02-12
上架时间 2015-02-12
评分 5.00/5 共3次评分
开发者 benjamin12g
付费类型 free
支持的语言 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"
    ]
}