Locker - Password Manager

A browser extension makes your online presence secure and seamless.

O que é Locker - Password Manager?

Locker - Password Manager é uma extensão do Chrome desenvolvida por locker, e sua principal característica é "A browser extension makes your online presence secure and seamless.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Locker - Password Manager

Baixe arquivos de extensão Locker - Password Manager no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Locker - Password Manager Locker - Password Manager
ID cmajindocfndlkpkjnmjpjoilibjgmgh
URL Oficial https://chromewebstore.google.com/detail/locker-password-manager/cmajindocfndlkpkjnmjpjoilibjgmgh
Descrição A browser extension makes your online presence secure and seamless.
Tamanho do Arquivo 10.43 MB
Contagem de Instalações 1,000
Versão Atual 3.0.36
Última Atualização 2024-03-01
Data de Publicação 2022-03-26
Classificação 4.77/5 Total de 22 Avaliações
Desenvolvedor locker
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://locker.io
URL da Página de Ajuda https://support.locker.io
URL da Página de Política de Privacidade https://cystack.net/privacy
Idiomas Suportados 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"
}