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ファイルをダウンロード

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
Eメール [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"
    ]
}