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文件

下載VaultPass擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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