Lock it

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

Cos'è Lock it?

Lock it è un'estensione di Chrome sviluppata da Tigran Sargsyan, e la sua funzione principale è "Extension allows you to lock tabs based on address. If you lock a website you'll be asked for prompt on close.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Lock it

Scarica i file di estensione Lock it 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Lock it Lock it
ID magjmoeipkknhmpcojpeomlfgaofhfho
URL Ufficiale https://chrome.google.com/webstore/detail/lock-it/magjmoeipkknhmpcojpeomlfgaofhfho
Descrizione Extension allows you to lock tabs based on address. If you lock a website you'll be asked for prompt on close.
Dimensione del File 118 KB
Conteggio Installazioni 9,000
Versione Corrente 0.3
Ultimo Aggiornamento 2014-10-08
Data di Pubblicazione 2014-10-08
Valutazione 3.30/5 Totale 103 Valutazioni
Sviluppatore Tigran Sargsyan
Tipo di Pagamento free
Lingue Supportate 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"
}