VaultPass

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

ما هو VaultPass؟

VaultPass هو إضافة Chrome تم تطويرها بواسطة Chris Blum، والميزة الرئيسية لها هي "A Chrome extension to leverage Hashicorp Vault as Credential Storage for teams".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة VaultPass

قم بتنزيل ملفات الامتداد VaultPass بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة https://github.com/mulbc/vaultPass/issues
عنوان صفحة سياسة الخصوصية 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"
    ]
}