Locker - Password Manager

A browser extension makes your online presence secure and seamless.

Τι είναι το Locker - Password Manager;

Το Locker - Password Manager είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον locker, και η κύρια λειτουργία του είναι "A browser extension makes your online presence secure and seamless.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Locker - Password Manager

Λήψη αρχείων επέκτασης Locker - Password Manager σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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

Βασικές Πληροφορίες Επέκτασης

Όνομα Locker - Password Manager Locker - Password Manager
ID cmajindocfndlkpkjnmjpjoilibjgmgh
Επίσημο URL https://chromewebstore.google.com/detail/locker-password-manager/cmajindocfndlkpkjnmjpjoilibjgmgh
Περιγραφή A browser extension makes your online presence secure and seamless.
Μέγεθος Αρχείου 10.43 MB
Αριθμός Εγκαταστάσεων 1,000
Τρέχουσα Έκδοση 3.0.36
Τελευταία Ενημέρωση 2024-03-01
Ημερομηνία Δημοσίευσης 2022-03-26
Αξιολόγηση 4.77/5 Συνολικά 22 Αξιολογήσεις
Προγραμματιστής locker
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://locker.io
Διεύθυνση URL της Σελίδας Βοήθειας https://support.locker.io
URL της Σελίδας Πολιτικής Απορρήτου https://cystack.net/privacy
Υποστηριζόμενες Γλώσσες 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"
}