WebLock
Simple website locker
What is WebLock?
WebLock is a Chrome extension developed by Perraco Labs, and its main feature is "Simple website locker".
Extension Screenshots
Download WebLock Extension CRX File
Download WebLock 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
Temporarily block access to a list of websites. When blocking is enabled, any of the desired websites will display an error every time access is attempted. You can also set a PIN to access the extension and disable the lock. It is possible to block only subdomains or subdirectories, instead of an entire website. See some examples in the extension itself.
Extension Basic Information
Name | WebLock |
ID | liefgbafdofhlkmccpgfnledbigaiona |
Official URL | https://chromewebstore.google.com/detail/weblock/liefgbafdofhlkmccpgfnledbigaiona |
Description | Simple website locker |
File Size | 26.43 KB |
Installation Count | 420 |
Current Version | 1.0 |
Last Updated | 2022-11-03 |
Publish Date | 2022-11-03 |
Developer | Perraco Labs |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://www.perracolabs.com/privacy-policy-chrome-extensions |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "WebLock", "description": "Simple website locker", "version": "1.0", "icons": { "128": "icon_off.png" }, "minimum_chrome_version": "92", "permissions": [ "storage", "tabs", "webNavigation" ], "background": { "service_worker": "background.js", "type": "module" }, "action": { "default_popup": "page_main.html" } } |