Let Me Out

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

Что такое Let Me Out?

Let Me Out - это расширение Chrome, разработанное https://tedbigham.blogspot.com, и его основная функция - "Prevents actions (like alerts) when navigating away from a page.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Let Me Out

Скачайте файлы расширений Let Me Out в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Let Me Out Let Me Out
ID hnfdibcbmlppjlkefinedeffoiomlecc
Официальный URL https://chromewebstore.google.com/detail/let-me-out/hnfdibcbmlppjlkefinedeffoiomlecc
Описание Prevents actions (like alerts) when navigating away from a page.
Размер файла 4.26 KB
Количество установок 10,903
Текущая Версия 1.3
Последнее Обновление 2015-01-27
Дата публикации 2015-01-27
Рейтинг 3.94/5 Всего 66 оценок
Разработчик https://tedbigham.blogspot.com
Тип оплаты free
Поддерживаемые языки 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
        }
    ]
}