Lock Tab

Prevents a tab from being closed accidentally

Lock Tabとは何ですか?

Lock Tabはgabomaldiによって開発されたChromeの拡張機能で、その主な機能は「Prevents a tab from being closed accidentally」です。

拡張機能のスクリーンショット

screenshot
screenshot

Lock Tab拡張機能のCRXファイルをダウンロード

Lock Tab拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Adds a padlock icon that allows toggling each tab's lock/unlocked state. When a locked tab is being closed, a confirmation dialog which allows preventing the tab from closing, is displayed.

📣 IMPORTANT: after locking, some interaction with the page is required for it to work. So you need to, for example, click anywhere on the page after locking to actually prevent the tab from being closed. This is how Chrome works.                    

拡張機能の基本情報

名前 Lock Tab Lock Tab
ID nhbdiieigbgalknjplfpgmjnpbnkchnb
公式URL https://chromewebstore.google.com/detail/lock-tab/nhbdiieigbgalknjplfpgmjnpbnkchnb
説明 Prevents a tab from being closed accidentally
ファイルサイズ 43.5 KB
インストール数 6,094
現在のバージョン 1.2.1
最終更新日 2024-01-15
公開日 2022-06-24
評価 3.50/5 合計 30 レビュー
開発者 gabomaldi
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/gabrielmaldi/chrome-lock-tab
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Lock Tab",
    "description": "Prevents a tab from being closed accidentally",
    "version": "1.2.1",
    "author": "gabrielmaldi",
    "homepage_url": "https:\/\/github.com\/gabrielmaldi\/chrome-lock-tab",
    "manifest_version": 3,
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "128": "images\/unlocked-light.png"
    },
    "background": {
        "service_worker": "src\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "action": [],
    "options_page": "src\/options.html"
}