Password Depot Extension

Interface to the Password Depot application.

Τι είναι το Password Depot Extension;

Το Password Depot Extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.password-depot.com, και η κύρια λειτουργία του είναι "Interface to the Password Depot application.".

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

screenshot
screenshot
screenshot

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

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

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

                        NOTE: This is an add-on for the Password Depot application version 12 and above.

Before installing the extension, we recommend that you download and install the latest version of Password Depot: https://www.password-depot.de/en/download.htm. If you use this extension, Password Depot can automatically fill in web forms in the browser and add new password entries to the main program.

Password Depot is a powerful and user-friendly application (Windows, Mac OS, Android and iOS) for managing your passwords, software licenses, credit cards. Documents, Remote Desktop Connections and Encrypted Documents. More information about Password Depot can be found at: https://www.password-depot.de/en/                    

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

Όνομα Password Depot Extension Password Depot Extension
ID ggojliohohbachojmcgelnjmnjmjgidn
Επίσημο URL https://chromewebstore.google.com/detail/password-depot-extension/ggojliohohbachojmcgelnjmnjmjgidn
Περιγραφή Interface to the Password Depot application.
Μέγεθος Αρχείου 961 KB
Αριθμός Εγκαταστάσεων 10,000
Τρέχουσα Έκδοση 15.3.3
Τελευταία Ενημέρωση 2023-08-14
Ημερομηνία Δημοσίευσης 2020-02-17
Αξιολόγηση 3.88/5 Συνολικά 51 Αξιολογήσεις
Προγραμματιστής https://www.password-depot.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.password-depot.de
Διεύθυνση URL της Σελίδας Βοήθειας https://www.password-depot.de/support.htm
URL της Σελίδας Πολιτικής Απορρήτου https://www.password-depot.de/en/company/privacy.htm
Υποστηριζόμενες Γλώσσες de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Password Depot Extension",
    "version": "15.3.3",
    "manifest_version": 3,
    "description": "__MSG_pd_description__",
    "homepage_url": "https:\/\/www.password-depot.de",
    "default_locale": "en",
    "icons": {
        "128": "icons\/128.png",
        "48": "icons\/48.png",
        "16": "icons\/16.png"
    },
    "background": {
        "service_worker": "js\/pdBackgroundScript.js"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "vendor\/underscore-min.js",
                "vendor\/jquery-3.5.1.min.js",
                "js\/pdContentScript.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_icon": "icons\/48.png",
        "default_title": "Password Depot",
        "default_popup": "dialogs\/popup.html"
    },
    "permissions": [
        "nativeMessaging",
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "dialogs\/*",
                "icons\/*",
                "fonts\/*",
                "assets\/*"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "content_security_policy": {
        "script-src": "self",
        "object-src": "self"
    }
}