DeWallet
TON Wallet
DeWallet란 무엇입니까?
DeWallet은(는) https://delabwallet.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "TON Wallet"입니다.
확장 프로그램 스크린샷
DeWallet 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A DeWallet TON in your Browser DeWallet is an extension for accessing TON enabled decentralized applications, or "dApps" in your browser! The extension injects the ton web3 API into every website's javascript context, so that dApps can read from the blockchain. DeWallet also lets the user create and manage their own identities (via private keys, local client wallet), so when a dApp wants to perform a transaction and write to the blockchain, the user gets a secure interface to review the transaction, before approving or rejecting it. The application support network features: Jettons, NFT, TON DNS and more! Because it adds functionality to the normal browser context, DeWallet requires the permission to read and write to any webpage.
확장 프로그램 기본 정보
이름 | DeWallet |
ID | pnccjgokhbnggghddhahcnaopgeipafg |
공식 URL | https://chromewebstore.google.com/detail/dewallet/pnccjgokhbnggghddhahcnaopgeipafg |
설명 | TON Wallet |
파일 크기 | 2.93 MB |
설치 횟수 | 682 |
현재 버전 | 1.5 |
최근 업데이트 | 2023-04-16 |
출시 날짜 | 2023-03-23 |
평점 | 4.17/5 총 6 개의 평점 |
개발자 | https://delabwallet.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://delabwallet.com |
도움말 페이지 URL | https://delab.t.me |
개인정보 보호 정책 페이지 URL | https://delabwallet.com/terms.pdf |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "DeWallet", "description": "TON Wallet", "version": "1.5", "manifest_version": 3, "icons": { "16": "logo_black.png", "32": "logo_black.png", "48": "logo_black.png", "128": "logo_black.png", "256": "logo_black.png", "512": "logo_black.png" }, "action": { "default_popup": "index.html" }, "permissions": [], "content_scripts": [ { "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/inject.js" ], "run_at": "document_start", "all_frames": true } ], "externally_connectable": { "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ] }, "background": { "service_worker": "js\/background.js", "type": "module" }, "web_accessible_resources": [ { "resources": [ "js\/provider.js" ], "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |