Give me back my scroll wheel

Capture any click event and cancel its propagation if the scroll wheel was used.

¿Qué es Give me back my scroll wheel?

Give me back my scroll wheel es una extensión de Chrome desarrollada por https://ewoutkleinsmann.com, y su función principal es "Capture any click event and cancel its propagation if the scroll wheel was used.".

Descargar Archivo CRX de la Extensión Give me back my scroll wheel

Descarga archivos de extensión Give me back my scroll wheel 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

                                            

Información Básica de la Extensión

Nombre Give me back my scroll wheel Give me back my scroll wheel
ID kfdffnefaojncoocjegphgaphgbkogpi
URL Oficial https://chromewebstore.google.com/detail/give-me-back-my-scroll-wh/kfdffnefaojncoocjegphgaphgbkogpi
Descripción Capture any click event and cancel its propagation if the scroll wheel was used.
Tamaño del Archivo 32.21 KB
Cantidad de Instalaciones 21
Versión Actual 0.2
Última Actualización 2012-08-13
Fecha de Publicación 2012-08-13
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador https://ewoutkleinsmann.com
Tipo de Pago free
Sitio Web de la Extensión http://ewoutkleinsmann.com/give-me-back-my-scroll-wheel/
Idiomas Soportados nl
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Give me back my scroll wheel",
    "version": "0.2",
    "description": "Capture any click event and cancel its propagation if the scroll wheel was used.",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}