Let Me Out

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

Let Me Outとは何ですか?

Let Me Outはhttps://tedbigham.blogspot.comによって開発されたChromeの拡張機能で、その主な機能は「Prevents actions (like alerts) when navigating away from a page.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Let Me Out拡張機能のCRXファイルをダウンロード

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
        }
    ]
}