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