Let Me Out

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

What is Let Me Out?

Let Me Out is a Chrome extension developed by https://tedbigham.blogspot.com, and its main feature is "Prevents actions (like alerts) when navigating away from a page.".

Extension Screenshots

screenshot
screenshot

Download Let Me Out Extension CRX File

Download Let Me Out extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Let Me Out Let Me Out
ID hnfdibcbmlppjlkefinedeffoiomlecc
Official URL https://chromewebstore.google.com/detail/let-me-out/hnfdibcbmlppjlkefinedeffoiomlecc
Description Prevents actions (like alerts) when navigating away from a page.
File Size 4.26 KB
Installation Count 10,903
Current Version 1.3
Last Updated 2015-01-27
Publish Date 2015-01-27
Rating 3.94/5 Total 66 Ratings
Developer https://tedbigham.blogspot.com
Payment Type free
Supported Languages 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
        }
    ]
}