OpenMask - TON wallet

A TON Wallet in your Browser

OpenMask - TON wallet란 무엇입니까?

OpenMask - TON wallet은(는) https://openmask.app에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A TON Wallet in your Browser"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

OpenMask - TON wallet 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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:\/\/*\/*"
            ]
        }
    ]
}