Let Me Out

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

Let Me Outคืออะไร?

Let Me Out เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://tedbigham.blogspot.com และคุณลักษณะหลักของมันคือ "Prevents actions (like alerts) when navigating away from a page."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Let Me Out

ดาวน์โหลดไฟล์ส่วนขยาย 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
        }
    ]
}