Taho

The community owned and operated Web3 wallet.

Taho란 무엇입니까?

Taho은(는) https://taho.xyz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The community owned and operated Web3 wallet."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Taho is the community-owned Web3 wallet.

It’s got everything you need for DeFi + NFTs, plus lots of awesome features to love:

- An awesome Ledger integration
- A beautiful NFT gallery
- Swaps with no hidden fees

It's also the safest way to connect to web3:

- Taho is 100% open source
- You have full control over your coin
- Independently audited
- We respect your privacy

Install Taho to get started today!                    

확장 프로그램 기본 정보

이름 Taho Taho
ID eajafomhmkipbjmfmhebemolkcicgfmd
공식 URL https://chromewebstore.google.com/detail/taho/eajafomhmkipbjmfmhebemolkcicgfmd
설명 The community owned and operated Web3 wallet.
파일 크기 27.12 MB
설치 횟수 146,668
현재 버전 0.57.0
최근 업데이트 2024-02-16
출시 날짜 2021-12-12
평점 4.43/5 총 70 개의 평점
개발자 https://taho.xyz
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://taho.xyz
도움말 페이지 URL https://chat.taho.xyz
개인정보 보호 정책 페이지 URL https://taho.xyz/privacy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Taho",
    "version": "0.57.0",
    "description": "The community owned and operated Web3 wallet.",
    "homepage_url": "https:\/\/taho.xyz",
    "author": "https:\/\/taho.xyz",
    "manifest_version": 2,
    "content_security_policy": "object-src 'self'; script-src 'self' 'wasm-eval';",
    "web_accessible_resources": [
        "*.js",
        "*.json"
    ],
    "content_scripts": [
        {
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/localhost\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "provider-bridge.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Alt+T",
                "mac": "Alt+T",
                "chromeos": "Alt+T",
                "linux": "Alt+T"
            }
        }
    },
    "icons": {
        "128": "icon-128.png"
    },
    "browser_action": {
        "default_title": "Taho",
        "default_popup": "popup.html"
    },
    "permissions": [
        "alarms",
        "storage",
        "unlimitedStorage",
        "activeTab"
    ],
    "optional_permissions": [
        "notifications"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "background.js",
            "background-ui.js"
        ]
    },
    "minimum_chrome_version": "74",
    "externally_connectable": {
        "ids": []
    }
}