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 扩展基本信息
| 名称 | |
| 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 |
| 电子邮箱 | [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"
}
]
} | |