VaultPass

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

What is VaultPass?

VaultPass is a Chrome extension developed by Chris Blum, and its main feature is "A Chrome extension to leverage Hashicorp Vault as Credential Storage for teams".

Extension Screenshots

screenshot

Download VaultPass Extension CRX File

Download VaultPass extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name VaultPass VaultPass
ID kbndeonibamcpiibocdhlagccdlmefco
Official URL https://chromewebstore.google.com/detail/vaultpass/kbndeonibamcpiibocdhlagccdlmefco
Description A Chrome extension to leverage Hashicorp Vault as Credential Storage for teams
File Size 65.67 KB
Installation Count 774
Current Version 2.3.4
Last Updated 2023-11-21
Publish Date 2019-02-26
Rating 4.20/5 Total 5 Ratings
Developer Chris Blum
Email [email protected]
Payment Type free
Extension Website https://github.com/mulbc/vaultpass
Help Page URL https://github.com/mulbc/vaultPass/issues
Privacy Policy Page URL https://github.com/mulbc/vaultPass/blob/master/dataPrivacy.md
Supported Languages 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"
    ]
}