Lock Tab

Prevents a tab from being closed accidentally

What is Lock Tab?

Lock Tab is a Chrome extension developed by gabomaldi, and its main feature is "Prevents a tab from being closed accidentally".

Extension Screenshots

screenshot
screenshot

Download Lock Tab Extension CRX File

Download Lock Tab extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Lock Tab Lock Tab
ID nhbdiieigbgalknjplfpgmjnpbnkchnb
Official URL https://chromewebstore.google.com/detail/lock-tab/nhbdiieigbgalknjplfpgmjnpbnkchnb
Description Prevents a tab from being closed accidentally
File Size 43.5 KB
Installation Count 6,094
Current Version 1.2.1
Last Updated 2024-01-15
Publish Date 2022-06-24
Rating 3.50/5 Total 30 Ratings
Developer gabomaldi
Email [email protected]
Payment Type free
Extension Website https://github.com/gabrielmaldi/chrome-lock-tab
Supported Languages 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"
}