Let Me Out

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

Co je Let Me Out?

Let Me Out je rozšíření Chrome vyvinuté https://tedbigham.blogspot.com, a jeho hlavní funkcí je „Prevents actions (like alerts) when navigating away from a page.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Let Me Out

Stáhněte si soubory rozšíření Let Me Out ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Let Me Out Let Me Out
ID hnfdibcbmlppjlkefinedeffoiomlecc
Oficiální URL https://chromewebstore.google.com/detail/let-me-out/hnfdibcbmlppjlkefinedeffoiomlecc
Popis Prevents actions (like alerts) when navigating away from a page.
Velikost souboru 4.26 KB
Počet instalací 10,903
Aktuální Verze 1.3
Poslední Aktualizace 2015-01-27
Datum Vydání 2015-01-27
Hodnocení 3.94/5 Celkem 66 Hodnocení
Vývojář https://tedbigham.blogspot.com
Typ Platby free
Podporované Jazyky 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
        }
    ]
}