Web Lock | App lock for websites

Your app lock, but for the web. Protect any website with a password!

Was ist Web Lock | App lock for websites?

Web Lock | App lock for websites ist eine Chrome-Erweiterung, die von https://blogdesire.com entwickelt wurde, und ihr Hauptmerkmal ist "Your app lock, but for the web. Protect any website with a password!".

Erweiterungsscreenshots

screenshot
screenshot

Web Lock | App lock for websites-Erweiterungs-CRX-Datei herunterladen

Laden Sie Web Lock | App lock for websites-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Web lock is password protection for websites, just like app locks on mobile phones. With this extension, you can password protect any website that contains your sensitive data, like email, chat, photos, etc.

This is also an excellent fit for parents who want to restrict their children from accessing the broad internet.

Key Features:
Web Lock: To Protect any website with a password
Block Site: Block any distracting website to stay focused
Browser Lock: Lock your entire browser with just one click
Password Recovery: Easy password recovery system. So, you don't have to worry if you ever forget your password. 
Password Change: Change your password with just one click.

Changelog:
--v1.31
- Released Browser Lock Alpha Version
--v1.3
- Fixed the issue of not working on some sites.
- Added Browser Lock feature
--v1.2
- Changed Email Server
- Added Block Site
- Added Announcement Page
- Added Feedback Form
- Improved URL input experience

--v1.1
- Initial Release with web lock feature                    

Grundlegende Informationen zur Erweiterung

Name Web Lock | App lock for websites Web Lock | App lock for websites
ID dnnadodijkgincdakbjjhhcmlbfpahjj
Offizielle URL https://chromewebstore.google.com/detail/web-lock-app-lock-for-web/dnnadodijkgincdakbjjhhcmlbfpahjj
Beschreibung Your app lock, but for the web. Protect any website with a password!
Dateigröße 251 KB
Installationsanzahl 12,623
Aktuelle Version 1.31
Letztes Update 2024-03-04
Veröffentlichungsdatum 2022-03-20
Bewertung 4.29/5 Insgesamt 51 Bewertungen
Entwickler https://blogdesire.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://apps.blogdesire.com/web-lock
Hilfeseite URL https://khokon.dev/contact
URL der Datenschutzrichtlinien-Seite https://server.khokon.dev/weblock-privacy
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Khokon M. (khokon.dev)",
    "content_scripts": [
        {
            "js": [
                "assets\/js\/sha.js",
                "assets\/js\/noty.js",
                "assets\/js\/content.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/css\/login.css",
                "assets\/css\/noty.css",
                "assets\/js\/locker.js",
                "assets\/js\/sha.js",
                "assets\/js\/noty.js",
                "assets\/img\/up-arrow.svg",
                "forgot.html",
                "login.html",
                "blocked.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "assets\/js\/background.js"
    },
    "action": {
        "default_icon": "assets\/img\/48.png",
        "default_popup": "popup.html",
        "default_title": "Web Lock"
    },
    "description": "Your app lock, but for the web. Protect any website with a password!",
    "homepage_url": "https:\/\/blogdesire.com",
    "icons": {
        "128": "assets\/img\/128.png",
        "48": "assets\/img\/48.png"
    },
    "manifest_version": 3,
    "name": "Web Lock | App lock for websites",
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "optional_permissions": [
        "tabs"
    ],
    "short_name": "weblock",
    "version": "1.31"
}