Lock Tab

Prevents a tab from being closed accidentally

Was ist Lock Tab?

Lock Tab ist eine Chrome-Erweiterung, die von gabomaldi entwickelt wurde, und ihr Hauptmerkmal ist "Prevents a tab from being closed accidentally".

Erweiterungsscreenshots

screenshot
screenshot

Lock Tab-Erweiterungs-CRX-Datei herunterladen

Laden Sie Lock Tab-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Lock Tab Lock Tab
ID nhbdiieigbgalknjplfpgmjnpbnkchnb
Offizielle URL https://chromewebstore.google.com/detail/lock-tab/nhbdiieigbgalknjplfpgmjnpbnkchnb
Beschreibung Prevents a tab from being closed accidentally
Dateigröße 43.5 KB
Installationsanzahl 6,094
Aktuelle Version 1.2.1
Letztes Update 2024-01-15
Veröffentlichungsdatum 2022-06-24
Bewertung 3.50/5 Insgesamt 30 Bewertungen
Entwickler gabomaldi
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/gabrielmaldi/chrome-lock-tab
Unterstützte Sprachen 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"
}