Website Locker

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

What is Website Locker?

Website Locker is a Chrome extension developed by calebgeizer, and its main feature is "Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.".

Extension Screenshots

screenshot

Download Website Locker Extension CRX File

Download Website Locker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Website Locker Website Locker
ID kbomichpahnfklembajcficjediaphpm
Official URL https://chromewebstore.google.com/detail/website-locker/kbomichpahnfklembajcficjediaphpm
Description Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.
File Size 8.1 KB
Installation Count 1,119
Current Version 0.1.0
Last Updated 2022-04-07
Publish Date 2019-05-03
Rating 5.00/5 Total 2 Ratings
Developer calebgeizer
Email [email protected]
Payment Type free
Extension Website https://calebgeizer.com/
Supported Languages 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"
    ]
}