Website Locker

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

Cos'è Website Locker?

Website Locker è un'estensione di Chrome sviluppata da calebgeizer, e la sua funzione principale è "Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Website Locker

Scarica i file di estensione Website Locker 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Website Locker Website Locker
ID kbomichpahnfklembajcficjediaphpm
URL Ufficiale https://chromewebstore.google.com/detail/website-locker/kbomichpahnfklembajcficjediaphpm
Descrizione Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.
Dimensione del File 8.1 KB
Conteggio Installazioni 1,119
Versione Corrente 0.1.0
Ultimo Aggiornamento 2022-04-07
Data di Pubblicazione 2019-05-03
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore calebgeizer
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://calebgeizer.com/
Lingue Supportate 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"
    ]
}