Website Locker

Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.

Co to jest Website Locker?

Website Locker to rozszerzenie Chrome opracowane przez calebgeizer, a jego główną funkcją jest „Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Website Locker

Pobierz pliki rozszerzeń Website Locker 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

                        Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time. Pick between a whitelist or blacklist, a blacklist locks the websites listed while a whitelist locks every website but the ones listed. Then type in the websites you want locked/unlocked and put in the amount of unlocked time.                    

Podstawowe informacje o rozszerzeniu

Nazwa Website Locker Website Locker
ID kbomichpahnfklembajcficjediaphpm
Oficjalny URL https://chromewebstore.google.com/detail/website-locker/kbomichpahnfklembajcficjediaphpm
Opis Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.
Rozmiar pliku 8.1 KB
Liczba instalacji 1,119
Aktualna Wersja 0.1.0
Ostatnia Aktualizacja 2022-04-07
Data Publikacji 2019-05-03
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper calebgeizer
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://calebgeizer.com/
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Website Locker",
    "version": "0.1.0",
    "manifest_version": 2,
    "description": "Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.",
    "homepage_url": "https:\/\/github.com\/calebgeizer",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Unlock\/Lock",
        "default_popup": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "storage"
    ]
}