Website Locker

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

Apa itu Website Locker?

Website Locker adalah ekstensi Chrome yang dikembangkan oleh calebgeizer, dan fitur utamanya adalah "Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Website Locker

Unduh file ekstensi Website Locker dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Website Locker Website Locker
ID kbomichpahnfklembajcficjediaphpm
URL Resmi https://chromewebstore.google.com/detail/website-locker/kbomichpahnfklembajcficjediaphpm
Deskripsi Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.
Ukuran File 8.1 KB
Jumlah Instalasi 1,119
Versi Saat Ini 0.1.0
Terakhir Diperbarui 2022-04-07
Tanggal Publikasi 2019-05-03
Penilaian 5.00/5 Total 2 Penilaian
Pengembang calebgeizer
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://calebgeizer.com/
Bahasa yang Didukung 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"
    ]
}