TON Wallet
Set up your own TON Wallet on The Open Network
Τι είναι το TON Wallet;
Το TON Wallet είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον TON Center, και η κύρια λειτουργία του είναι "Set up your own TON Wallet on The Open Network".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης TON Wallet
Λήψη αρχείων επέκτασης TON Wallet σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Secure and private way to access the new, decentralized Internet. Install this extension to integrate The Open Network into your browser. Use TON Wallet to store, receive and send your coins within TON blockchain. Create your wallet or import existing one just in one click. Our extension allows your browser to interact with decentralized applications. Dapps can communicate with the blockchain and do some magic. Click on ⋮ menu to enable TON Magic and transfer coins using Telegram Web. Start a one-to-one chat with a friend and choose ‘Send Toncoins’ in the 📎 attachment menu. 100% free and open. The source code is available on GitHub. You can always review the extension and open an issue in our repository https://github.com/toncenter/ton-wallet. Soon: Explore the Internet anonymously and securely. Open the gateway to the decentralized Web3 and allow your browser to interact with TON DNS, TON Proxy, and TON Sites.
Βασικές Πληροφορίες Επέκτασης
Όνομα | TON Wallet |
ID | nphplpgoakhhjchkkhmiggakijnkhfnd |
Επίσημο URL | https://chromewebstore.google.com/detail/ton-wallet/nphplpgoakhhjchkkhmiggakijnkhfnd |
Περιγραφή | Set up your own TON Wallet on The Open Network |
Μέγεθος Αρχείου | 577 KB |
Αριθμός Εγκαταστάσεων | 74,900 |
Τρέχουσα Έκδοση | 1.1.49 |
Τελευταία Ενημέρωση | 2024-02-11 |
Ημερομηνία Δημοσίευσης | 2021-09-26 |
Αξιολόγηση | 3.04/5 Συνολικά 48 Αξιολογήσεις |
Προγραμματιστής | TON Center |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Διεύθυνση URL της Σελίδας Βοήθειας | https://t.me/ton_help_bot |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "1.1.49", "name": "TON Wallet", "description": "Set up your own TON Wallet on The Open Network", "icons": { "16": "assets\/extension\/icon-16.png", "19": "assets\/extension\/icon-19.png", "24": "assets\/extension\/icon-24.png", "32": "assets\/extension\/icon-32.png", "38": "assets\/extension\/icon-38.png", "48": "assets\/extension\/icon-48.png", "64": "assets\/extension\/icon-64.png", "96": "assets\/extension\/icon-96.png", "128": "assets\/extension\/icon-128.png", "256": "assets\/extension\/icon-256.png", "512": "assets\/extension\/icon-512.png" }, "permissions": [ "webRequest", "storage" ], "background": { "service_worker": "js\/extension\/background.js" }, "content_scripts": [ { "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/extension\/content.js" ], "run_at": "document_start", "all_frames": true } ], "web_accessible_resources": [ { "resources": [ "js\/extension\/provider.js" ], "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "content_security_policy": { "extension_pages": "default-src 'none'; script-src 'self'; style-src 'self'; font-src 'self'; img-src 'self' data: https:\/\/nft.ton.diamonds\/; connect-src https:\/\/toncenter.com\/api\/ https:\/\/testnet.toncenter.com\/api\/ https:\/\/stage.toncenter.com\/api\/ https:\/\/stage-testnet.toncenter.com\/api\/ https:\/\/ton.diamonds\/api\/wallet\/diamond_nfts" }, "host_permissions": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "action": { "default_title": "TON Wallet" } } |