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
官方網址 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
        }
    ]
}