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