Middle Click Scroll

Clicking the middle click/wheel now takes you to the top of the page

¿Qué es Middle Click Scroll?

Middle Click Scroll es una extensión de Chrome desarrollada por alarv, y su función principal es "Clicking the middle click/wheel now takes you to the top of the page".

Descargar Archivo CRX de la Extensión Middle Click Scroll

Descarga archivos de extensión Middle Click Scroll 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

                        Give life to your mouse wheel click! By clicking the mouse wheel or the middle mouse click, you can now scroll to the top of the page or to the bottom! If you want to cancel your action, don't worry! 1 second after you keep the mouse wheel clicked, the event is cancelled, to avoid unwanted scrolls. Enjoy scrolling!                    

Información Básica de la Extensión

Nombre Middle Click Scroll Middle Click Scroll
ID fjpenocmelcgifceikomkkjkhdfgghjn
URL Oficial https://chrome.google.com/webstore/detail/middle-click-scroll/fjpenocmelcgifceikomkkjkhdfgghjn
Descripción Clicking the middle click/wheel now takes you to the top of the page
Tamaño del Archivo 15.16 KB
Cantidad de Instalaciones 195
Versión Actual 1.0
Última Actualización 2016-06-07
Fecha de Publicación 2016-06-07
Calificación 2.29/5 Total de 7 Calificaciones
Desarrollador alarv
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": "Middle Click Scroll",
    "version": "1.0",
    "description": "Clicking the middle click\/wheel now takes you to the top of the page",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "author": "Alex",
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}