DeWallet

TON Wallet

DeWallet là gì?

DeWallet là một tiện ích mở rộng Chrome được phát triển bởi https://delabwallet.com, và tính năng chính của nó là "TON Wallet".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng DeWallet

Tải xuống các tệp mở rộng DeWallet dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên DeWallet DeWallet
ID pnccjgokhbnggghddhahcnaopgeipafg
URL Chính Thức https://chromewebstore.google.com/detail/dewallet/pnccjgokhbnggghddhahcnaopgeipafg
Mô tả TON Wallet
Kích Thước Tệp 2.93 MB
Số Lần Cài Đặt 682
Phiên Bản Hiện Tại 1.5
Cập Nhật Lần Cuối 2023-04-16
Ngày Phát Hành 2023-03-23
Đánh Giá 4.17/5 Tổng số 6 Đánh Giá
Nhà Phát Triển https://delabwallet.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://delabwallet.com
URL Trang Trợ Giúp https://delab.t.me
URL Trang Chính Sách Bảo Mật https://delabwallet.com/terms.pdf
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
            ]
        }
    ]
}