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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}