DeWallet

TON Wallet

DeWalletとは何ですか?

DeWalletはhttps://delabwallet.comによって開発されたChromeの拡張機能で、その主な機能は「TON Wallet」です。

拡張機能のスクリーンショット

screenshot

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 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
Eメール [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:\/\/*\/*"
            ]
        }
    ]
}