Lock it

Extension allows you to lock tabs based on address. If you lock a website you'll be asked for prompt on close.

O que é Lock it?

Lock it é uma extensão do Chrome desenvolvida por Tigran Sargsyan, e sua principal característica é "Extension allows you to lock tabs based on address. If you lock a website you'll be asked for prompt on close.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Lock it

Baixe arquivos de extensão Lock it 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

                        Update: Added deadlock feature, allows you to have your tabs reopened even if you close them after warning. Selecting this option is not recommended. Deadlock can be found in Lock it extension options.                    

Informações Básicas da Extensão

Nome Lock it Lock it
ID magjmoeipkknhmpcojpeomlfgaofhfho
URL Oficial https://chrome.google.com/webstore/detail/lock-it/magjmoeipkknhmpcojpeomlfgaofhfho
Descrição Extension allows you to lock tabs based on address. If you lock a website you'll be asked for prompt on close.
Tamanho do Arquivo 118 KB
Contagem de Instalações 9,000
Versão Atual 0.3
Última Atualização 2014-10-08
Data de Publicação 2014-10-08
Classificação 3.30/5 Total de 103 Avaliações
Desenvolvedor Tigran Sargsyan
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "description": "Extension allows you to lock tabs based on address. If you lock a website you'll be asked for prompt on close.",
    "icons": {
        "256": "icon_256.png",
        "128": "icon_128.png",
        "16": "icon_16.png",
        "48": "icon_48.png"
    },
    "manifest_version": 2,
    "name": "Lock it",
    "page_action": {
        "default_icon": "unlocked_19.png",
        "default_title": "Unlocked"
    },
    "permissions": [
        "storage",
        "tabs",
        "management",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "options_page": "options.html",
    "version": "0.3"
}