Brume Wallet
The private wallet
Cos'è Brume Wallet?
Brume Wallet è un'estensione di Chrome sviluppata da Brume, e la sua funzione principale è "The private wallet".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Brume Wallet
Scarica i file di estensione Brume Wallet in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
A non-custodial and private Ethereum wallet with a built-in implementation of the Tor network
Informazioni di Base sull'Estensione
Nome | Brume Wallet |
ID | oljgnlammonjehmmfahdjgjhjclpockd |
URL Ufficiale | https://chromewebstore.google.com/detail/brume-wallet/oljgnlammonjehmmfahdjgjhjclpockd |
Descrizione | The private wallet |
Dimensione del File | 2.07 MB |
Conteggio Installazioni | 125 |
Versione Corrente | 0.5.11 |
Ultimo Aggiornamento | 2024-02-27 |
Data di Pubblicazione | 2023-06-28 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Brume |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://bento.me/brume |
URL della Pagina della Politica sulla Privacy | https://brume.money/privacy |
Lingue Supportate | 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" } ] } |