Brume Wallet
The private wallet
Brume Wallet란 무엇입니까?
Brume Wallet은(는) Brume에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The private wallet"입니다.
확장 프로그램 스크린샷
Brume Wallet 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
개인정보 보호 정책 페이지 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" } ] } |