Locker - Password Manager

A browser extension makes your online presence secure and seamless.

Cos'è Locker - Password Manager?

Locker - Password Manager è un'estensione di Chrome sviluppata da locker, e la sua funzione principale è "A browser extension makes your online presence secure and seamless.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Locker - Password Manager

Scarica i file di estensione Locker - Password Manager in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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).                    

Informazioni di Base sull'Estensione

Nome Locker - Password Manager Locker - Password Manager
ID cmajindocfndlkpkjnmjpjoilibjgmgh
URL Ufficiale https://chromewebstore.google.com/detail/locker-password-manager/cmajindocfndlkpkjnmjpjoilibjgmgh
Descrizione A browser extension makes your online presence secure and seamless.
Dimensione del File 10.43 MB
Conteggio Installazioni 1,000
Versione Corrente 3.0.36
Ultimo Aggiornamento 2024-03-01
Data di Pubblicazione 2022-03-26
Valutazione 4.77/5 Totale 22 Valutazioni
Sviluppatore locker
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://locker.io
URL della Pagina di Aiuto https://support.locker.io
URL della Pagina della Politica sulla Privacy https://cystack.net/privacy
Lingue Supportate 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"
}