Chrome Locker

Restrict unauthorized access to your web accounts

What is Chrome Locker?

Chrome Locker is a Chrome extension developed by ankur1812vu, and its main feature is "Restrict unauthorized access to your web accounts".

Extension Screenshots

screenshot
screenshot
screenshot

Download Chrome Locker Extension CRX File

Download Chrome 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

                        Install Chrome Locker to password protect your emails and social media accounts. The extension adds a lock-screen to the websites which you want to secure, and unlocks only after correct password is entered.

[ Default password is "password" ]                    

Extension Basic Information

Name Chrome Locker Chrome Locker
ID mbppjdfmgdlhakpabemcmhnckanjdjmn
Official URL https://chromewebstore.google.com/detail/chrome-locker/mbppjdfmgdlhakpabemcmhnckanjdjmn
Description Restrict unauthorized access to your web accounts
File Size 15.78 KB
Installation Count 1,725
Current Version 1.0.3
Last Updated 2022-04-11
Publish Date 2022-04-04
Rating 1.00/5 Total 2 Ratings
Developer ankur1812vu
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chrome Locker",
    "description": "Restrict unauthorized access to your web accounts",
    "version": "1.0.3",
    "manifest_version": 3,
    "background": {
        "service_worker": "background_chromelock.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "contentScript_chromelock.css"
            ],
            "js": [
                "contentScript_chromelock.js"
            ],
            "exclude_matches": []
        }
    ],
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "options_page": "options_chromelock.html",
    "action": {
        "default_popup": "popup_chromelock.html",
        "default_icon": {
            "16": "\/images\/lock128D.png",
            "32": "\/images\/lock128D.png",
            "48": "\/images\/lock128D.png",
            "128": "\/images\/lock128D.png"
        }
    },
    "icons": {
        "16": "\/images\/lock128D.png",
        "32": "\/images\/lock128D.png",
        "48": "\/images\/lock128D.png",
        "128": "\/images\/lock128D.png"
    }
}