Let Me Out

Prevents actions (like alerts) when navigating away from a page.

¿Qué es Let Me Out?

Let Me Out es una extensión de Chrome desarrollada por https://tedbigham.blogspot.com, y su función principal es "Prevents actions (like alerts) when navigating away from a page.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Let Me Out

Descarga archivos de extensión Let Me Out 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 extension blocks popup messages like "Are you sure you want to leave this page?" when navigating away from some sites.

Feel free to leave feedback for sites this doesn't work on.  I'll try to update new versions to deal with new techniques.                    

Información Básica de la Extensión

Nombre Let Me Out Let Me Out
ID hnfdibcbmlppjlkefinedeffoiomlecc
URL Oficial https://chromewebstore.google.com/detail/let-me-out/hnfdibcbmlppjlkefinedeffoiomlecc
Descripción Prevents actions (like alerts) when navigating away from a page.
Tamaño del Archivo 4.26 KB
Cantidad de Instalaciones 10,903
Versión Actual 1.3
Última Actualización 2015-01-27
Fecha de Publicación 2015-01-27
Calificación 3.94/5 Total de 66 Calificaciones
Desarrollador https://tedbigham.blogspot.com
Tipo de Pago free
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Let Me Out",
    "short_name": "letmeout",
    "description": "Prevents actions (like alerts) when navigating away from a page.",
    "version": "1.3",
    "web_accessible_resources": [
        "before.inject.js",
        "after.inject.js"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "before.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "after.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}