Locker - Password Manager

A browser extension makes your online presence secure and seamless.

Qu'est-ce que Locker - Password Manager ?

Locker - Password Manager est une extension Chrome développée par locker, et sa fonction principale est "A browser extension makes your online presence secure and seamless.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Locker - Password Manager

Téléchargez les fichiers d'extension Locker - Password Manager 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

                        Locker is a cross-platform vault that help users secure sensitive digital assets such as logins and passwords, secret notes, payment cards, online identities, and crypto wallets. It also offers additional features to enhance browsing experience like password autofill, item sharing, and more.

Why choose Locker over other password managers?

1. Security
- Locker uses military-grade encryption to secure your data. AES-256bit encryption combined with PBKDF2 and RSA algorithm makes your data is un-crackable.
- Your vault is encrypted with a Master Password, which is the only key to decrypt your data.

2. Privacy & Transparency
- Your Master Password is only yours. No body, even us, can see your Master Password thanks to Zero-knowledge development model.
- Locker is an open-source product. Everyone can inspect its source code. We believe transparency is the key to better security.

3. Unlimited Sync
- Once you add, edit, remove items in your Locker on a device, the data will be sync-ed across all other devices*.

4. Bring Your Passwords with You
- With Offline Mode, you can use Locker anywhere, anytime, even when your phone is not connected to the internet**.


No more password hassle.
Free Your Mind. Install Locker.

*Data is encrypted before they left the current device.
**Offline Mode is only available on Locker mobile application (Android & iOS).                    

Informations de Base sur l'Extension

Nom Locker - Password Manager Locker - Password Manager
ID cmajindocfndlkpkjnmjpjoilibjgmgh
URL Officiel https://chromewebstore.google.com/detail/locker-password-manager/cmajindocfndlkpkjnmjpjoilibjgmgh
Description A browser extension makes your online presence secure and seamless.
Taille du Fichier 10.43 MB
Nombre d'Installations 1,000
Version Actuelle 3.0.36
Dernière Mise à Jour 2024-03-01
Date de Publication 2022-03-26
Évaluation 4.77/5 Total 22 Évaluations
Développeur locker
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://locker.io
URL de la Page d'Aide https://support.locker.io
URL de la Page de Politique de Confidentialité https://cystack.net/privacy
Langues Prises en Charge en,vi
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "homepage_url": "http:\/\/locker.io",
    "description": "__MSG_extDesc__",
    "default_locale": "en",
    "permissions": [
        "tabs",
        "contextMenus",
        "storage",
        "unlimitedStorage",
        "clipboardWrite",
        "idle",
        "activeTab",
        "webRequestBlocking",
        "offscreen"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        ""
    ],
    "optional_host_permissions": [
        "*:\/\/*\/*"
    ],
    "optional_permissions": [
        "nativeMessaging"
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "js\/content\/autofill.js",
                "js\/content\/autofiller.js",
                "js\/content\/notificationBar.js",
                "js\/content\/contextMenuHandler.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "run_at": "document_start"
        },
        {
            "all_frames": true,
            "js": [
                "js\/content\/shortcuts.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "run_at": "document_start"
        },
        {
            "all_frames": true,
            "js": [
                "js\/content\/messageHandler.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "run_at": "document_start"
        },
        {
            "all_frames": true,
            "css": [
                "content\/autofill.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_title": "__MSG_extName__",
        "default_icon": {
            "19": "icons\/19.png",
            "38": "icons\/38.png"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "bar.html",
                "menu.html",
                "icons\/*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; style-src 'self' 'unsafe-inline'",
        "sandbox": "sandbox allow-scripts allow-forms; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self';"
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/*\/*"
        ]
    },
    "sidebar_action": {
        "default_panel": "popup.html",
        "default_title": "__MSG_extName__",
        "default_icon": {
            "19": "icons\/19.png",
            "38": "icons\/38.png"
        }
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+L",
                "mac": "Alt+L"
            },
            "description": "Opens popup menu"
        },
        "_execute_sidebar_action": {
            "suggested_key": {
                "default": "Alt+Shift+L",
                "mac": "Alt+Shift+L"
            },
            "description": "Execute sidebar action"
        }
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "version": "3.0.36"
}