Alternate Navigation Buttons

This extension places a back and forward and goto top button on the page near the bottom of the window

O que é Alternate Navigation Buttons?

Alternate Navigation Buttons é uma extensão do Chrome desenvolvida por scott.c.l.carpenter, e sua principal característica é "This extension places a back and forward and goto top button on the page near the bottom of the window".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Alternate Navigation Buttons

Baixe arquivos de extensão Alternate Navigation Buttons 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

                        This simple extension simply adds 3 fixed navigation buttons (back and forward and to top) to the bottom left corner of the browser window. 

Useful if you find yourself using a tablet PC in a non-tablet mode or like myself browsing with your mouse near the bottom of the screen.                    

Informações Básicas da Extensão

Nome Alternate Navigation Buttons Alternate Navigation Buttons
ID biojkleepjmhindklmdcomngjkcngjmb
URL Oficial https://chromewebstore.google.com/detail/alternate-navigation-butt/biojkleepjmhindklmdcomngjkcngjmb
Descrição This extension places a back and forward and goto top button on the page near the bottom of the window
Tamanho do Arquivo 90.63 KB
Contagem de Instalações 226
Versão Atual 1.1
Última Atualização 2016-09-01
Data de Publicação 2016-09-01
Classificação 4.80/5 Total de 5 Avaliações
Desenvolvedor scott.c.l.carpenter
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Alternate Navigation Buttons",
    "description": "This extension places a back and forward and goto top button on the page near the bottom of the window",
    "version": "1.1",
    "web_accessible_resources": [
        "back.png",
        "forward.png",
        "top.png"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "myscript.js"
            ],
            "run_at": "document_start"
        }
    ]
}