OpenMask - TON wallet

A TON Wallet in your Browser

OpenMask - TON wallet क्या है?

OpenMask - TON wallet https://openmask.app द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A TON Wallet in your Browser"।

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

screenshot
screenshot
screenshot

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

crx प्रारूप में OpenMask - TON wallet एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        OpenMask is an extension for accessing TON enabled decentralized applications, or "dApps" in your browser! MetaMask analog for The Open Network.

The extension injects the ton web3 API into every website's javascript context, so that dApps can read from the blockchain.

OpenMask 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, TON WWW, TON Proxy, TON Sites and more!

The wallet support biometric authentication via Touch Id for Mac, Yubikey or mobile phones. 

Because it adds functionality to the normal browser context, OpenMask requires the permission to read and write to any webpage. You can always "view the source" of OpenMask the way you do any Chrome extension, or view the source code on Github:
https://github.com/OpenProduct/openmask-extension                    

एक्सटेंशन की मूल जानकारी

नाम OpenMask - TON wallet OpenMask - TON wallet
ID penjlddjkjgpnkllboccdgccekpkcbin
आधिकारिक URL https://chromewebstore.google.com/detail/openmask-ton-wallet/penjlddjkjgpnkllboccdgccekpkcbin
विवरण A TON Wallet in your Browser
फ़ाइल का आकार 901 KB
स्थापना संख्या 10,000
वर्तमान संस्करण 0.20.6
अंतिम अपडेट 2024-02-14
प्रकाशन तिथि 2022-09-14
रेटिंग 4.33/5 कुल 6 रेटिंग्स
डेवलपर https://openmask.app
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.openmask.app/
सहायता पृष्ठ URL https://github.com/OpenProduct/openmask-extension/issues
गोपनीयता नीति पृष्ठ URL https://www.openmask.app/terms-and-conditions
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "OpenMask - TON wallet",
    "short_name": "OpenMask",
    "description": "A TON Wallet in your Browser",
    "version": "0.20.6",
    "manifest_version": 3,
    "action": {
        "default_popup": "index.html",
        "default_title": "Open the Wallet"
    },
    "icons": {
        "16": "tonmask-logo16.png",
        "48": "tonmask-logo48.png",
        "128": "tonmask-logo128.png"
    },
    "permissions": [
        "proxy",
        "storage",
        "unlimitedStorage",
        "clipboardWrite",
        "activeTab"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "provider.js"
            ],
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}