DeWallet
TON Wallet
什么是DeWallet?
DeWallet是由https://delabwallet.com开发的Chrome扩展程序,该扩展的主要功能是“TON Wallet”。
扩展截图
下载DeWallet扩展crx文件
下载DeWallet扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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:\/\/*\/*" ] } ] } |