Brume Wallet
The private wallet
Brume Walletとは何ですか?
Brume WalletはBrumeによって開発されたChromeの拡張機能で、その主な機能は「The private wallet」です。
拡張機能のスクリーンショット
Brume Wallet拡張機能のCRXファイルをダウンロード
Brume Wallet拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A non-custodial and private Ethereum wallet with a built-in implementation of the Tor network
拡張機能の基本情報
名前 | Brume Wallet |
ID | oljgnlammonjehmmfahdjgjhjclpockd |
公式URL | https://chromewebstore.google.com/detail/brume-wallet/oljgnlammonjehmmfahdjgjhjclpockd |
説明 | The private wallet |
ファイルサイズ | 2.07 MB |
インストール数 | 125 |
現在のバージョン | 0.5.11 |
最終更新日 | 2024-02-27 |
公開日 | 2023-06-28 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | Brume |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://bento.me/brume |
プライバシーポリシーページのURL | https://brume.money/privacy |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Brume Wallet", "description": "The private wallet", "version": "0.5.11", "action": [], "icons": { "512": "favicon.png" }, "permissions": [ "storage", "offscreen" ], "content_security_policy": { "extension_pages": "default-src 'self'; base-uri 'self'; object-src 'none'; script-src 'self' 'wasm-unsafe-eval'; img-src 'self' data: blob:; connect-src 'self' data: https:\/\/raw.githubusercontent.com wss:\/\/snowflake.torproject.net;" }, "background": { "type": "module", "service_worker": "service_worker.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_script.js" ], "run_at": "document_start", "all_frames": true }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "injected_script.js" ], "run_at": "document_start", "all_frames": true, "world": "MAIN" } ] } |