Bravura Safe

A secure password manager for all of your devices.

Bravura Safeคืออะไร?

Bravura Safe เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Bravura Security ( formerly Hitachi ID Systems ) และคุณลักษณะหลักของมันคือ "A secure password manager for all of your devices."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bravura Safe

ดาวน์โหลดไฟล์ส่วนขยาย Bravura Safe ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        An easy-to-implement enterprise password safe that centrally manages decentralized passwords to protect against cyberattacks.
Bravura Safe is an easy-to-implement enterprise password safe that centrally, consistently, and securely manages decentralized passwords, secrets, personal information, and files to protect against cyberattacks.

It leverages two decades of Bravura Security’s enterprise cybersecurity solutions that organizations around the world already trust for their security needs. You can trust that Bravura Safe will protect and respect your privacy through its Zero Knowledge encryption. All sensitive information ( passwords, personal information, files, etc ) are encrypted client side. Only encrypted data is transferred to the Bravura Safe service. It is impossible for employees at Bravura Security to decrypt this data since you - and you alone - know the encryption key to your personal information. 

Bravura Safe is open source software and is freely available on github ( https://github.com/Hitachi-ID ) for anyone to review. Bravura Security believes this openness is critical for building a foundation of trust. 

Bravura Safe is a modified version of Bitwarden®. It was developed using Bitwarden open source software. Bravura Security, Inc. and Bravura Safe are not affiliated with or endorsed by Bitwarden or Bitwarden, Inc. Bitwarden is a trademark or registered trademark of Bitwarden, Inc. in the United States and/or other countries.

Bravura Security, an analyst-recognized leader formerly known as Hitachi ID Systems, Inc., delivers decades of experience and the industry's only single Identity, Privileged Access, Password and Passwordless management platform, the Bravura Security Fabric.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Bravura Safe Bravura Safe
ID cjidmfgdjckibjdfnglfdgohkaballnn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/bravura-safe/cjidmfgdjckibjdfnglfdgohkaballnn
คำอธิบาย A secure password manager for all of your devices.
ขนาดไฟล์ 8 MB
จำนวนการติดตั้ง 193
เวอร์ชันปัจจุบัน 2023.13
อัปเดตครั้งล่าสุด 2023-12-15
วันที่เผยแพร่ 2022-04-01
ผู้พัฒนา Bravura Security ( formerly Hitachi ID Systems )
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.bravurasecurity.com/products/bravura-safe
URL หน้าช่วยเหลือ https://www.bravurasecurity.com/support/
URL หน้านโยบายความเป็นส่วนตัว https://www.bravurasecurity.com/privacy
ภาษาที่รองรับ de,en,en-GB,fr,es,pt-BR,zh-CN,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "short_name": "__MSG_appName__",
    "version": "2023.13",
    "description": "__MSG_extDesc__",
    "default_locale": "en",
    "author": "Bravura Security",
    "homepage_url": "https:\/\/www.bravurasecurity.com\/",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "96": "images\/icon96.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content\/autofill.js",
                "content\/autofiller.js",
                "content\/notificationBar.js",
                "content\/contextMenuHandler.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "run_at": "document_start"
        },
        {
            "all_frames": false,
            "js": [
                "content\/message_handler.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "run_at": "document_start"
        },
        {
            "all_frames": true,
            "css": [
                "content\/autofill.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_title": "Bravura Safe",
        "default_popup": "popup\/index.html"
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "storage",
        "unlimitedStorage",
        "clipboardRead",
        "clipboardWrite",
        "idle",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webRequest",
        "webRequestBlocking"
    ],
    "optional_permissions": [
        "nativeMessaging"
    ],
    "content_security_policy": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "linux": "Ctrl+Shift+U"
            },
            "description": "__MSG_commandOpenPopup__"
        },
        "autofill_login": {
            "suggested_key": {
                "default": "Ctrl+Shift+L"
            },
            "description": "__MSG_commandAutofillDesc__"
        },
        "generate_password": {
            "suggested_key": {
                "default": "Ctrl+Shift+9"
            },
            "description": "__MSG_commandGeneratePasswordDesc__"
        },
        "lock_vault": {
            "description": "__MSG_commandLockVaultDesc__"
        }
    },
    "web_accessible_resources": [
        "notification\/bar.html",
        "images\/icon38.png",
        "images\/icon38_locked.png"
    ],
    "storage": {
        "managed_schema": "managed_schema.json"
    }
}