Prevent Tab Closing

Prevents tabs from closing unexpectedly. Using dialog 'Are you sure?'

Prevent Tab Closingคืออะไร?

Prevent Tab Closing เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://shoshins.github.io/prevent-tab-closing และคุณลักษณะหลักของมันคือ "Prevents tabs from closing unexpectedly. Using dialog 'Are you sure?'"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Prevent Tab Closing

ดาวน์โหลดไฟล์ส่วนขยาย Prevent Tab Closing ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension prevents unexpected tabs closing in browser.

Browser will ask 'Are you sure?' before leaving the page or closing the tab. Forget about losing data in case of accidental browser closing.

It will work on all pages in any tabs or on some specific URLs that you may specify in the Extension UI.

You may Turn ON / Turn OFF it easily using Enable / Disable Button.

And it's absolutely safe. Source code is OpenSource.

Video Example:
https://drive.google.com/file/d/1z94MbSk5zt6HdXDB9YgKLnAK9efxVldg/view

URL Regex Examples.
- Example #1. Ask on all websites: ".*"
- Example #2. Ask only on specific website, for example google.com: ".*google.com.*"

More info about Regex: https://regexr.com                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Prevent Tab Closing Prevent Tab Closing
ID jilanldohabpfcpgihdcadeffoopefbb
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/prevent-tab-closing/jilanldohabpfcpgihdcadeffoopefbb
คำอธิบาย Prevents tabs from closing unexpectedly. Using dialog 'Are you sure?'
ขนาดไฟล์ 39.13 KB
จำนวนการติดตั้ง 664
เวอร์ชันปัจจุบัน 0.0.2
อัปเดตครั้งล่าสุด 2021-03-02
วันที่เผยแพร่ 2020-11-06
คะแนน 2.86/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา https://shoshins.github.io/prevent-tab-closing
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://shoshins.github.io/prevent-tab-closing/
URL หน้าช่วยเหลือ https://shoshins.github.io/prevent-tab-closing/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Prevent Tab Closing",
    "version": "0.0.2",
    "description": "Prevents tabs from closing unexpectedly. Using dialog 'Are you sure?'",
    "icons": {
        "16": "16x16.png",
        "48": "48x48.png",
        "128": "128x128.png"
    },
    "browser_action": {
        "default_title": "Prevent tab from closing unexpectedly",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "js": [
                "core.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "page.js"
    ]
}