Password Depot Extension

Interface to the Password Depot application.

Password Depot Extension là gì?

Password Depot Extension là một tiện ích mở rộng Chrome được phát triển bởi https://www.password-depot.com, và tính năng chính của nó là "Interface to the Password Depot application.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Password Depot Extension

Tải xuống các tệp mở rộng Password Depot Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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/                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Password Depot Extension Password Depot Extension
ID ggojliohohbachojmcgelnjmnjmjgidn
URL Chính Thức https://chromewebstore.google.com/detail/password-depot-extension/ggojliohohbachojmcgelnjmnjmjgidn
Mô tả Interface to the Password Depot application.
Kích Thước Tệp 961 KB
Số Lần Cài Đặt 10,000
Phiên Bản Hiện Tại 15.3.3
Cập Nhật Lần Cuối 2023-08-14
Ngày Phát Hành 2020-02-17
Đánh Giá 3.88/5 Tổng số 51 Đánh Giá
Nhà Phát Triển https://www.password-depot.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.password-depot.de
URL Trang Trợ Giúp https://www.password-depot.de/support.htm
URL Trang Chính Sách Bảo Mật https://www.password-depot.de/en/company/privacy.htm
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}