Locker - Password Manager

A browser extension makes your online presence secure and seamless.

Hvad er Locker - Password Manager?

Locker - Password Manager er en Chrome-udvidelse udviklet af locker, og dens hovedfunktion er "A browser extension makes your online presence secure and seamless.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Locker - Password Manager-udvidelses-CRX-fil

Download Locker - Password Manager-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Locker - Password Manager Locker - Password Manager
ID cmajindocfndlkpkjnmjpjoilibjgmgh
Officiel URL https://chromewebstore.google.com/detail/locker-password-manager/cmajindocfndlkpkjnmjpjoilibjgmgh
Beskrivelse A browser extension makes your online presence secure and seamless.
Filstørrelse 10.43 MB
Antal Installationer 1,000
Nuværende Version 3.0.36
Senest Opdateret 2024-03-01
Udgivelsesdato 2022-03-26
Bedømmelse 4.77/5 Samlet 22 Bedømmelser
Udvikler locker
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://locker.io
Hjælpeside-URL https://support.locker.io
URL til Fortrolighedspolitik Side https://cystack.net/privacy
Understøttede Sprog 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"
}