Website Locker

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

Co je Website Locker?

Website Locker je rozšíření Chrome vyvinuté calebgeizer, a jeho hlavní funkcí je „Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Website Locker

Stáhněte si soubory rozšíření Website Locker ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Website Locker Website Locker
ID kbomichpahnfklembajcficjediaphpm
Oficiální URL https://chromewebstore.google.com/detail/website-locker/kbomichpahnfklembajcficjediaphpm
Popis Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.
Velikost souboru 8.1 KB
Počet instalací 1,119
Aktuální Verze 0.1.0
Poslední Aktualizace 2022-04-07
Datum Vydání 2019-05-03
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář calebgeizer
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://calebgeizer.com/
Podporované Jazyky 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"
    ]
}