Elpass

The extension for Elpass, a modern password manager you can fully control.

Τι είναι το Elpass;

Το Elpass είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Surge Networks Inc., και η κύρια λειτουργία του είναι "The extension for Elpass, a modern password manager you can fully control.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Elpass

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

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

                        Elpass is a password manager and personal digital vault that you can fully control. It has an enjoyable interface and always keeps your safety in mind.

Elpass isolates your vault strictly. Your data is stored on your device locally and synced with a third-party cloud service like iCloud and Dropbox. Your data will be encrypted with bank-level algorithms before being sent, making sure that nobody can access it without your master password.

Security is critical, but sometimes we don't want so many troubles for insignificant items. You may set a security level for every item. A convenient level item may fill automatically without any interaction. However, a high level item requires biometric verification every time.

About convenience,  Elpass can auto-fill logins for webpages and native applications on macOS. You never need to open the password manager and copy passwords manually.

Elpass works on your Mac, iPhone & iPad. All data is synced smoothly and securely.                    

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

Όνομα Elpass Elpass
ID ifenjpgbadbcfejhajfgdbjjdgodcdab
Επίσημο URL https://chromewebstore.google.com/detail/elpass/ifenjpgbadbcfejhajfgdbjjdgodcdab
Περιγραφή The extension for Elpass, a modern password manager you can fully control.
Μέγεθος Αρχείου 72.21 KB
Αριθμός Εγκαταστάσεων 1,410
Τρέχουσα Έκδοση 2.0.0
Τελευταία Ενημέρωση 2024-02-02
Ημερομηνία Δημοσίευσης 2020-06-17
Αξιολόγηση 5.00/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής Surge Networks Inc.
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://elpass.app
URL της Σελίδας Πολιτικής Απορρήτου https://elpass.app/privacy-policy
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Elpass",
    "description": "The extension for Elpass, a modern password manager you can fully control.",
    "version": "2.0.0",
    "manifest_version": 3,
    "minimum_chrome_version": "88",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "contentScripts.js"
            ],
            "css": [
                "style.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "exclude_globs": [
                "*:\/\/ad.*\/*",
                "*:\/\/ad0.*\/*",
                "*:\/\/ad1.*\/*",
                "*:\/\/ad2.*\/*",
                "*:\/\/ad3.*\/*",
                "*:\/\/ad4.*\/*",
                "*:\/\/ad5.*\/*",
                "*:\/\/ad6.*\/*",
                "*:\/\/ad7.*\/*",
                "*:\/\/ad8.*\/*",
                "*:\/\/ad9.*\/*",
                "*:\/\/ads?.*\/*",
                "*:\/\/adserver*.*\/*",
                "*:\/\/*\/*adframe*",
                "*:\/\/tag.admeld*.*\/*",
                "*:\/\/*.atdmt.com\/*",
                "*:\/\/*.doubleclick.*\/*",
                "*:\/\/*.ak.fbcdn.net\/*",
                "*:\/\/plusone.google.com\/*",
                "*:\/\/platform.twitter.com\/widgets\/*",
                "*:\/\/*.facebook.com\/widgets\/*",
                "*:\/\/*.facebook.com\/plugins\/*",
                "*:\/\/*.facebook.com\/extern\/*",
                "*:\/\/www.youtube.com\/embed\/*",
                "*:\/\/stats.complex.com\/*",
                "*:\/\/*.addthis.com\/static\/*",
                "*:\/\/vitamine.networldmedia.net\/*",
                "*:\/\/api.tweetmeme.com\/*",
                "*:\/\/*.atwola.com\/*",
                "*:\/\/engine.adzerk.net\/*",
                "*:\/\/*.stumbleupon.com\/badge\/*",
                "*:\/\/*.bizographics.com\/collect\/*",
                "*:\/\/*.musthird.com\/*",
                "*:\/\/*.googletagmanager.com\/*",
                "*:\/\/ipservice.163.com\/*"
            ]
        }
    ],
    "action": {
        "default_title": "Fill the password",
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        }
    },
    "commands": {
        "show_popup": {
            "suggested_key": {
                "default": "Ctrl+Shift+O",
                "mac": "Command+Shift+O"
            },
            "description": "Open Popup"
        }
    },
    "incognito": "spanning",
    "options_page": "options.html",
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "permissions": [
        "contextMenus",
        "webRequest",
        "webRequestAuthProvider",
        "tabs",
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}