Arrow Browse

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

Что такое Arrow Browse?

Arrow Browse - это расширение Chrome, разработанное benjamin12g, и его основная функция - "Allows use of arrow keys to move to next and previous pages.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Arrow Browse

Скачайте файлы расширений 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"
    ]
}