Passwall - Free Password Manager

Passwall is an open source password manager

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

Το Passwall - Free Password Manager είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://passwall.io, και η κύρια λειτουργία του είναι "Passwall is an open source password manager".

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

screenshot
screenshot
screenshot

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

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

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

                        Passwall is an open source password manager.

All the logins and passwords you add to the Passwall Extension are securely stored by the Passwall Server, which is also an open source project. 

Passwall allows you to securely store your logins and passwords in the following categories:
1. Logins
2. Emails
3. Credit Cards
4. Bank Accounts
5. Private Notes
6. Servers

Passwall has a 4 layered encryption architecture.
Layer 1: A secure hash (master hash) is generated from your master password.
Layer 2: All your logins and passwords are encrypted on the client side with master hash. This ensures that passwords can only be decrypted by you.
Layer 3: With end-to-end encryption feature, all data sent from the client to the server is also encrypted during the transportation with an always changing transmission key.
Layer 4: Finally your passwords are also encrypted with server hash just before saving them to the database.

Passwall is an open source software. The source code for Passwall is hosted on GitHub and everyone is free to review, audit, and contribute to the Passwall codebase.                    

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

Όνομα Passwall - Free Password Manager Passwall - Free Password Manager
ID blaiihhmnjllkfnkmkidahhegbmlghmo
Επίσημο URL https://chromewebstore.google.com/detail/passwall-free-password-ma/blaiihhmnjllkfnkmkidahhegbmlghmo
Περιγραφή Passwall is an open source password manager
Μέγεθος Αρχείου 1.44 MB
Αριθμός Εγκαταστάσεων 358
Τρέχουσα Έκδοση 1.1.1
Τελευταία Ενημέρωση 2023-06-05
Ημερομηνία Δημοσίευσης 2020-04-28
Αξιολόγηση 5.00/5 Συνολικά 8 Αξιολογήσεις
Προγραμματιστής https://passwall.io
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής in_app
Ιστότοπος Επέκτασης https://passwall.io
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/passwall/passwall-extension/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Passwall - Free Password Manager",
    "homepage_url": "https:\/\/passwall.io",
    "description": "Passwall is an open source password manager",
    "default_locale": "en",
    "permissions": [
        "tabs",
        "activeTab",
        "",
        "*:\/\/*\/*"
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/**"
            ],
            "js": [
                "js\/content-script.js",
                "js\/jquery.js"
            ],
            "css": [
                "css\/content-script.css"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "*.html"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Passwall - Free Password Manager",
        "default_icon": {
            "19": "icons\/19.png",
            "38": "icons\/38.png"
        }
    },
    "version": "1.1.1",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}