AuthPoint Password Manager

Never forget a password again! AuthPoint will make your life easier and passwords safer.

AuthPoint Password Manager란 무엇입니까?

AuthPoint Password Manager은(는) WatchGuard Technologies, Inc에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Never forget a password again! AuthPoint will make your life easier and passwords safer."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

AuthPoint Password Manager 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        With the AuthPoint Password Manager, you can save your login credentials in a personal password vault so that the only password you have to remember is the vault password. AuthPoint uses modern cryptography to make sure that only you have access to your saved credentials. All sensitive data is encrypted and decrypted locally on your computer. The AuthPoint Password Manager only stores and synchronizes encrypted files, so no one can see your saved credentials.
 
The AuthPoint Password Manager can:
• Store your passwords so you don’t have to remember them
• Autofill your credentials when you log in
• Generate strong, unique passwords to protect your accounts
• Remotely log out from websites and secure your browsing history                    

확장 프로그램 기본 정보

이름 AuthPoint Password Manager AuthPoint Password Manager
ID ojlppiepkccjolgfenaebbfjicnljmnd
공식 URL https://chromewebstore.google.com/detail/authpoint-password-manage/ojlppiepkccjolgfenaebbfjicnljmnd
설명 Never forget a password again! AuthPoint will make your life easier and passwords safer.
파일 크기 4.43 MB
설치 횟수 1,051
현재 버전 1.0.5
최근 업데이트 2023-05-08
출시 날짜 2022-08-01
평점 5.00/5 총 4 개의 평점
개발자 WatchGuard Technologies, Inc
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.watchguard.com/
도움말 페이지 URL https://www.watchguard.com/wgrd-support
개인정보 보호 정책 페이지 URL https://www.watchguard.com/wgrd-about/privacy-policy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "AuthPoint Password Manager",
    "short_name": "AuthPoint",
    "description": "Never forget a password again! AuthPoint will make your life easier and passwords safer.",
    "version": "1.0.5",
    "author": "Watchguard",
    "homepage_url": "https:\/\/www.watchguard.com\/",
    "background": {
        "service_worker": "src\/background\/service-worker-wrapper.js"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "src\/forge\/forge.js",
                "src\/content_scripts\/content-script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "src\/images\/icons\/icon-16.png",
        "48": "src\/images\/icons\/icon-48.png",
        "128": "src\/images\/icons\/icon-128.png"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "browsingData",
        "storage",
        "cookies",
        "unlimitedStorage",
        "clipboardWrite",
        "bookmarks"
    ],
    "optional_permissions": [
        "contextMenus",
        "privacy"
    ],
    "action": {
        "default_icon": {
            "128": "src\/images\/icons\/icon-128.png"
        },
        "default_popup": "src\/ui\/index.html",
        "default_title": "AuthPoint Password Manager"
    },
    "host_permissions": [
        ""
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "resources": [
                "src\/images\/icons\/blank.png",
                "src\/content_scripts\/popup.html",
                "src\/content_scripts\/notification.html",
                "src\/images\/icons\/icon-32.png",
                "src\/images\/icons\/icon-32-i.png",
                "src\/images\/icons\/iconForce-32.png"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; img-src * data: ; object-src 'self'"
    }
}