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
电子邮箱 [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"
}