Password Depot Extension

Interface to the Password Depot application.

什麼是Password Depot Extension?

Password Depot Extension是由https://www.password-depot.com開發的Chrome擴展程式,該擴展的主要功能是“Interface to the Password Depot application.”。

擴展截圖

screenshot
screenshot
screenshot

下載Password Depot Extension擴展crx文件

下載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
官方網址 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"
    }
}