Lock Tab

Prevents a tab from being closed accidentally

O que é Lock Tab?

Lock Tab é uma extensão do Chrome desenvolvida por gabomaldi, e sua principal característica é "Prevents a tab from being closed accidentally".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Lock Tab

Baixe arquivos de extensão Lock Tab no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Lock Tab Lock Tab
ID nhbdiieigbgalknjplfpgmjnpbnkchnb
URL Oficial https://chromewebstore.google.com/detail/lock-tab/nhbdiieigbgalknjplfpgmjnpbnkchnb
Descrição Prevents a tab from being closed accidentally
Tamanho do Arquivo 43.5 KB
Contagem de Instalações 6,094
Versão Atual 1.2.1
Última Atualização 2024-01-15
Data de Publicação 2022-06-24
Classificação 3.50/5 Total de 30 Avaliações
Desenvolvedor gabomaldi
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/gabrielmaldi/chrome-lock-tab
Idiomas Suportados 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"
}