Fix Chrome middle click behaviour

Prevents Chrome from firing the 'click' event on middle click to fix scripts written with the behaviour of other browsers in mind.

¿Qué es Fix Chrome middle click behaviour?

Fix Chrome middle click behaviour es una extensión de Chrome desarrollada por Will Hirsch, y su función principal es "Prevents Chrome from firing the 'click' event on middle click to fix scripts written with the behaviour of other browsers in mind.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Fix Chrome middle click behaviour

Descarga archivos de extensión Fix Chrome middle click behaviour 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 Fix Chrome middle click behaviour Fix Chrome middle click behaviour
ID ndinbeikllkfjbmlfghokbkmcciflpek
URL Oficial https://chromewebstore.google.com/detail/fix-chrome-middle-click-b/ndinbeikllkfjbmlfghokbkmcciflpek
Descripción Prevents Chrome from firing the 'click' event on middle click to fix scripts written with the behaviour of other browsers in mind.
Tamaño del Archivo 6.19 KB
Cantidad de Instalaciones 2,577
Versión Actual 1.1
Última Actualización 2013-12-20
Fecha de Publicación 2013-12-19
Calificación 4.43/5 Total de 75 Calificaciones
Desarrollador Will Hirsch
Tipo de Pago free
Idiomas Soportados en,en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_application_title__",
    "version": "1.1",
    "description": "__MSG_application_description__",
    "default_locale": "en",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "script.js"
            ],
            "run_at": "document_start"
        }
    ]
}