Chrome Locker

Restrict unauthorized access to your web accounts

Wat is Chrome Locker?

Chrome Locker is een Chrome-extensie ontwikkeld door ankur1812vu, en de belangrijkste functie is "Restrict unauthorized access to your web accounts".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Chrome Locker

Download Chrome Locker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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" ]                    

Basisinformatie over de Extensie

Naam Chrome Locker Chrome Locker
ID mbppjdfmgdlhakpabemcmhnckanjdjmn
Officiële URL https://chromewebstore.google.com/detail/chrome-locker/mbppjdfmgdlhakpabemcmhnckanjdjmn
Beschrijving Restrict unauthorized access to your web accounts
Bestandsgrootte 15.78 KB
Aantal Installaties 1,725
Huidige Versie 1.0.3
Laatst Bijgewerkt 2022-04-11
Publicatiedatum 2022-04-04
Beoordeling 1.00/5 Totaal 2 Beoordelingen
Ontwikkelaar ankur1812vu
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    }
}