Lock Tab

Prevents a tab from being closed accidentally

Cos'è Lock Tab?

Lock Tab è un'estensione di Chrome sviluppata da gabomaldi, e la sua funzione principale è "Prevents a tab from being closed accidentally".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Lock Tab

Scarica i file di estensione Lock Tab in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Lock Tab Lock Tab
ID nhbdiieigbgalknjplfpgmjnpbnkchnb
URL Ufficiale https://chromewebstore.google.com/detail/lock-tab/nhbdiieigbgalknjplfpgmjnpbnkchnb
Descrizione Prevents a tab from being closed accidentally
Dimensione del File 43.5 KB
Conteggio Installazioni 6,094
Versione Corrente 1.2.1
Ultimo Aggiornamento 2024-01-15
Data di Pubblicazione 2022-06-24
Valutazione 3.50/5 Totale 30 Valutazioni
Sviluppatore gabomaldi
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/gabrielmaldi/chrome-lock-tab
Lingue Supportate 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"
}