Arrow Browse

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

O que é Arrow Browse?

Arrow Browse é uma extensão do Chrome desenvolvida por benjamin12g, e sua principal característica é "Allows use of arrow keys to move to next and previous pages.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Arrow Browse

Baixe arquivos de extensão Arrow Browse no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Arrow Browse Arrow Browse
ID mmnojcmflanomipfjmbmnafphfcigage
URL Oficial https://chrome.google.com/webstore/detail/arrow-browse/mmnojcmflanomipfjmbmnafphfcigage
Descrição Allows use of arrow keys to move to next and previous pages.
Tamanho do Arquivo 11.57 KB
Contagem de Instalações 25
Versão Atual 1.1.1
Última Atualização 2015-02-12
Data de Publicação 2015-02-12
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor benjamin12g
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}