VaultPass

A Chrome extension to leverage Hashicorp Vault as Credential Storage for teams

VaultPass란 무엇입니까?

VaultPass은(는) Chris Blum에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome extension to leverage Hashicorp Vault as Credential Storage for teams"입니다.

확장 프로그램 스크린샷

screenshot

VaultPass 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Think of it like Keepass for Teams where all your secrets are safely stored in Vault.

To use this exention you will need to have a running Vault instance.                    

확장 프로그램 기본 정보

이름 VaultPass VaultPass
ID kbndeonibamcpiibocdhlagccdlmefco
공식 URL https://chromewebstore.google.com/detail/vaultpass/kbndeonibamcpiibocdhlagccdlmefco
설명 A Chrome extension to leverage Hashicorp Vault as Credential Storage for teams
파일 크기 65.67 KB
설치 횟수 774
현재 버전 2.3.4
최근 업데이트 2023-11-21
출시 날짜 2019-02-26
평점 4.20/5 총 5 개의 평점
개발자 Chris Blum
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/mulbc/vaultpass
도움말 페이지 URL https://github.com/mulbc/vaultPass/issues
개인정보 보호 정책 페이지 URL https://github.com/mulbc/vaultPass/blob/master/dataPrivacy.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "VaultPass",
    "description": "A Chrome extension to leverage Hashicorp Vault as Credential Storage for teams",
    "version": "2.3.4",
    "action": {
        "default_icon": "icons\/logo128.png",
        "default_popup": "popup.html",
        "default_title": "VaultPass"
    },
    "icons": {
        "48": "icons\/logo48.png",
        "128": "icons\/logo128.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "browser-polyfill.min.js",
                "content.js",
                "common.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "storage",
        "clipboardWrite",
        "idle",
        "alarms"
    ]
}