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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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