Let Me Out

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

Cos'è Let Me Out?

Let Me Out è un'estensione di Chrome sviluppata da https://tedbigham.blogspot.com, e la sua funzione principale è "Prevents actions (like alerts) when navigating away from a page.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Let Me Out

Scarica i file di estensione Let Me Out in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Let Me Out Let Me Out
ID hnfdibcbmlppjlkefinedeffoiomlecc
URL Ufficiale https://chromewebstore.google.com/detail/let-me-out/hnfdibcbmlppjlkefinedeffoiomlecc
Descrizione Prevents actions (like alerts) when navigating away from a page.
Dimensione del File 4.26 KB
Conteggio Installazioni 10,903
Versione Corrente 1.3
Ultimo Aggiornamento 2015-01-27
Data di Pubblicazione 2015-01-27
Valutazione 3.94/5 Totale 66 Valutazioni
Sviluppatore https://tedbigham.blogspot.com
Tipo di Pagamento free
Lingue Supportate 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
        }
    ]
}