Brume Wallet
The private wallet
Brume Walletคืออะไร?
Brume Wallet เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Brume และคุณลักษณะหลักของมันคือ "The private wallet"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Brume Wallet
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" } ] } |