Lock Tab

Prevents a tab from being closed accidentally

Wat is Lock Tab?

Lock Tab is een Chrome-extensie ontwikkeld door gabomaldi, en de belangrijkste functie is "Prevents a tab from being closed accidentally".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Lock Tab

Download Lock Tab-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Lock Tab Lock Tab
ID nhbdiieigbgalknjplfpgmjnpbnkchnb
Officiële URL https://chromewebstore.google.com/detail/lock-tab/nhbdiieigbgalknjplfpgmjnpbnkchnb
Beschrijving Prevents a tab from being closed accidentally
Bestandsgrootte 43.5 KB
Aantal Installaties 6,094
Huidige Versie 1.2.1
Laatst Bijgewerkt 2024-01-15
Publicatiedatum 2022-06-24
Beoordeling 3.50/5 Totaal 30 Beoordelingen
Ontwikkelaar gabomaldi
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/gabrielmaldi/chrome-lock-tab
Ondersteunde Talen 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"
}