DeWallet

TON Wallet

DeWallet क्या है?

DeWallet https://delabwallet.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "TON Wallet"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में DeWallet एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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:\/\/*\/*"
            ]
        }
    ]
}