Prevent Tab Closing

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

Prevent Tab Closing란 무엇입니까?

Prevent Tab Closing은(는) https://shoshins.github.io/prevent-tab-closing에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Prevents tabs from closing unexpectedly. Using dialog 'Are you sure?'"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Prevent Tab Closing 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

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