Chrome Locker

Restrict unauthorized access to your web accounts

Qu'est-ce que Chrome Locker ?

Chrome Locker est une extension Chrome développée par ankur1812vu, et sa fonction principale est "Restrict unauthorized access to your web accounts".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Chrome Locker

Téléchargez les fichiers d'extension Chrome Locker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Chrome Locker Chrome Locker
ID mbppjdfmgdlhakpabemcmhnckanjdjmn
URL Officiel https://chromewebstore.google.com/detail/chrome-locker/mbppjdfmgdlhakpabemcmhnckanjdjmn
Description Restrict unauthorized access to your web accounts
Taille du Fichier 15.78 KB
Nombre d'Installations 1,725
Version Actuelle 1.0.3
Dernière Mise à Jour 2022-04-11
Date de Publication 2022-04-04
Évaluation 1.00/5 Total 2 Évaluations
Développeur ankur1812vu
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}