Brume Wallet
The private wallet
O que é Brume Wallet?
Brume Wallet é uma extensão do Chrome desenvolvida por Brume, e sua principal característica é "The private wallet".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Brume Wallet
Baixe arquivos de extensão Brume Wallet no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
A non-custodial and private Ethereum wallet with a built-in implementation of the Tor network
Informações Básicas da Extensão
Nome | Brume Wallet |
ID | oljgnlammonjehmmfahdjgjhjclpockd |
URL Oficial | https://chromewebstore.google.com/detail/brume-wallet/oljgnlammonjehmmfahdjgjhjclpockd |
Descrição | The private wallet |
Tamanho do Arquivo | 2.07 MB |
Contagem de Instalações | 125 |
Versão Atual | 0.5.11 |
Última Atualização | 2024-02-27 |
Data de Publicação | 2023-06-28 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Brume |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://bento.me/brume |
URL da Página de Política de Privacidade | https://brume.money/privacy |
Idiomas Suportados | 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" } ] } |