Brume Wallet
The private wallet
What is Brume Wallet?
Brume Wallet is a Chrome extension developed by Brume, and its main feature is "The private wallet".
Extension Screenshots
Download Brume Wallet Extension CRX File
Download Brume Wallet 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
A non-custodial and private Ethereum wallet with a built-in implementation of the Tor network
Extension Basic Information
Name | Brume Wallet |
ID | oljgnlammonjehmmfahdjgjhjclpockd |
Official URL | https://chromewebstore.google.com/detail/brume-wallet/oljgnlammonjehmmfahdjgjhjclpockd |
Description | The private wallet |
File Size | 2.07 MB |
Installation Count | 125 |
Current Version | 0.5.11 |
Last Updated | 2024-02-27 |
Publish Date | 2023-06-28 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Brume |
[email protected] | |
Payment Type | free |
Extension Website | https://bento.me/brume |
Privacy Policy Page URL | https://brume.money/privacy |
Supported Languages | 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" } ] } |