Lock it

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

Co to jest Lock it?

Lock it to rozszerzenie Chrome opracowane przez Tigran Sargsyan, a jego główną funkcją jest „Extension allows you to lock tabs based on address. If you lock a website you'll be asked for prompt on close.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Lock it

Pobierz pliki rozszerzeń Lock it w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Lock it Lock it
ID magjmoeipkknhmpcojpeomlfgaofhfho
Oficjalny URL https://chrome.google.com/webstore/detail/lock-it/magjmoeipkknhmpcojpeomlfgaofhfho
Opis Extension allows you to lock tabs based on address. If you lock a website you'll be asked for prompt on close.
Rozmiar pliku 118 KB
Liczba instalacji 9,000
Aktualna Wersja 0.3
Ostatnia Aktualizacja 2014-10-08
Data Publikacji 2014-10-08
Ocena 3.30/5 Łącznie 103 Oceny
Deweloper Tigran Sargsyan
Typ Płatności free
Obsługiwane Języki 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"
}