OpenMask - TON wallet

A TON Wallet in your Browser

O que é OpenMask - TON wallet?

OpenMask - TON wallet é uma extensão do Chrome desenvolvida por https://openmask.app, e sua principal característica é "A TON Wallet in your Browser".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão OpenMask - TON wallet

Baixe arquivos de extensão OpenMask - TON wallet no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome OpenMask - TON wallet OpenMask - TON wallet
ID penjlddjkjgpnkllboccdgccekpkcbin
URL Oficial https://chromewebstore.google.com/detail/openmask-ton-wallet/penjlddjkjgpnkllboccdgccekpkcbin
Descrição A TON Wallet in your Browser
Tamanho do Arquivo 901 KB
Contagem de Instalações 10,000
Versão Atual 0.20.6
Última Atualização 2024-02-14
Data de Publicação 2022-09-14
Classificação 4.33/5 Total de 6 Avaliações
Desenvolvedor https://openmask.app
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.openmask.app/
URL da Página de Ajuda https://github.com/OpenProduct/openmask-extension/issues
URL da Página de Política de Privacidade https://www.openmask.app/terms-and-conditions
Idiomas Suportados 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:\/\/*\/*"
            ]
        }
    ]
}