Lock Tab

Prevents a tab from being closed accidentally

Qu'est-ce que Lock Tab ?

Lock Tab est une extension Chrome développée par gabomaldi, et sa fonction principale est "Prevents a tab from being closed accidentally".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Lock Tab

Téléchargez les fichiers d'extension Lock Tab au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Lock Tab Lock Tab
ID nhbdiieigbgalknjplfpgmjnpbnkchnb
URL Officiel https://chromewebstore.google.com/detail/lock-tab/nhbdiieigbgalknjplfpgmjnpbnkchnb
Description Prevents a tab from being closed accidentally
Taille du Fichier 43.5 KB
Nombre d'Installations 6,094
Version Actuelle 1.2.1
Dernière Mise à Jour 2024-01-15
Date de Publication 2022-06-24
Évaluation 3.50/5 Total 30 Évaluations
Développeur gabomaldi
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/gabrielmaldi/chrome-lock-tab
Langues Prises en Charge 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"
}