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
官方網址 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
電子郵箱 [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"
}