Let Me Out

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

Co to jest Let Me Out?

Let Me Out to rozszerzenie Chrome opracowane przez https://tedbigham.blogspot.com, a jego główną funkcją jest „Prevents actions (like alerts) when navigating away from a page.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Let Me Out

Pobierz pliki rozszerzeń Let Me Out w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Let Me Out Let Me Out
ID hnfdibcbmlppjlkefinedeffoiomlecc
Oficjalny URL https://chromewebstore.google.com/detail/let-me-out/hnfdibcbmlppjlkefinedeffoiomlecc
Opis Prevents actions (like alerts) when navigating away from a page.
Rozmiar pliku 4.26 KB
Liczba instalacji 10,903
Aktualna Wersja 1.3
Ostatnia Aktualizacja 2015-01-27
Data Publikacji 2015-01-27
Ocena 3.94/5 Łącznie 66 Oceny
Deweloper https://tedbigham.blogspot.com
Typ Płatności free
Obsługiwane Języki 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
        }
    ]
}