Twetch Wallet

Freedomware™ wallet for crypto and NFTs

Twetch Wallet란 무엇입니까?

Twetch Wallet은(는) https://twetch.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Freedomware™ wallet for crypto and NFTs"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Twetch Wallet 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        A crypto wallet built for Decentralized Apps & NFTs.

Twetch is an extension for signing in and using distributed applications built on the Bitcoin SV (BSV) blockchain.

The extension injects code into the website's javascript context so that users can interact with applications, make transactions on the blockchain, and store collectibles.

Twetch also lets users create and manage their money via their private keys, so when a decentralized application wants to perform a transaction and write to the blockchain, the user gets a secure interface to review the transaction, before approving or rejecting.

The Twetch extension is a private and secure wallet app built for accessibility to web3. Because it adds functionality to the normal browser context, Twetch Wallet requires the permission to read and write to any webpage. Security is the highest priority, and Twetch code is built using the highest standards on the web today.                    

확장 프로그램 기본 정보

이름 Twetch Wallet Twetch Wallet
ID jaooiolkmfcmloonphpiiogkfckgciom
공식 URL https://chromewebstore.google.com/detail/twetch-wallet/jaooiolkmfcmloonphpiiogkfckgciom
설명 Freedomware™ wallet for crypto and NFTs
파일 크기 3.4 MB
설치 횟수 1,859
현재 버전 0.1.11
최근 업데이트 2023-11-17
출시 날짜 2021-12-07
평점 4.84/5 총 25 개의 평점
개발자 https://twetch.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://twetch.com
개인정보 보호 정책 페이지 URL https://twetch.app/privacypolicy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twetch Wallet",
    "short_name": "twetch-wallet",
    "version": "0.1.11",
    "description": "Freedomware\u2122 wallet for crypto and NFTs",
    "content_security_policy": "script-src 'self' 'wasm-eval'; object-src 'self'",
    "icons": {
        "128": "app-icon.png"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "app\/background.js"
        ]
    },
    "browser_action": {
        "default_title": "Twetch Wallet",
        "default_popup": "index.html",
        "default_icon": "app-icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "app\/content-script.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "app\/inpage.js"
    ]
}