Brume Wallet
The private wallet
ما هو Brume Wallet؟
Brume Wallet هو إضافة Chrome تم تطويرها بواسطة Brume، والميزة الرئيسية لها هي "The private wallet".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Brume Wallet
قم بتنزيل ملفات الامتداد Brume Wallet بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة سياسة الخصوصية | 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" } ] } |