Alternate Navigation Buttons

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

¿Qué es Alternate Navigation Buttons?

Alternate Navigation Buttons es una extensión de Chrome desarrollada por scott.c.l.carpenter, y su función principal es "This extension places a back and forward and goto top button on the page near the bottom of the window".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Alternate Navigation Buttons

Descarga archivos de extensión Alternate Navigation Buttons en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Alternate Navigation Buttons Alternate Navigation Buttons
ID biojkleepjmhindklmdcomngjkcngjmb
URL Oficial https://chromewebstore.google.com/detail/alternate-navigation-butt/biojkleepjmhindklmdcomngjkcngjmb
Descripción This extension places a back and forward and goto top button on the page near the bottom of the window
Tamaño del Archivo 90.63 KB
Cantidad de Instalaciones 226
Versión Actual 1.1
Última Actualización 2016-09-01
Fecha de Publicación 2016-09-01
Calificación 4.80/5 Total de 5 Calificaciones
Desarrollador scott.c.l.carpenter
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
        }
    ]
}