Bittensor Wallet

Manage your Bittensor accounts outside of dapps.

Bittensor Walletคืออะไร?

Bittensor Wallet เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Opentensor Foundation และคุณลักษณะหลักของมันคือ "Manage your Bittensor accounts outside of dapps."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bittensor Wallet

ดาวน์โหลดไฟล์ส่วนขยาย Bittensor Wallet ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This is a non-custodial TAO wallet created by the Opentensor Foundation. You can use this wallet to:
  - securely store TAO
  - transfer TAO
  - delegate TAO

This extension is not tracking you, or utilizing any form of analytics. It doesn't gather addresses, keys or other personal information.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Bittensor Wallet Bittensor Wallet
ID bdgmdoedahdcjmpmifafdhnffjinddgc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/bittensor-wallet/bdgmdoedahdcjmpmifafdhnffjinddgc
คำอธิบาย Manage your Bittensor accounts outside of dapps.
ขนาดไฟล์ 1.79 MB
จำนวนการติดตั้ง 14,988
เวอร์ชันปัจจุบัน 0.10.2
อัปเดตครั้งล่าสุด 2024-02-27
วันที่เผยแพร่ 2023-10-18
คะแนน 3.73/5 รวมทั้งหมด 44 คะแนน
ผู้พัฒนา Opentensor Foundation
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://bittensor.com
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Opentensor foundation",
    "description": "Manage your Bittensor accounts outside of dapps.",
    "homepage_url": "https:\/\/github.com\/bittensor\/wallet",
    "name": "Bittensor Wallet",
    "short_name": "bittensor",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_title": "bittensor wallet",
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "64": "images\/icon-64.png",
        "128": "images\/icon-128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "page.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
    },
    "version": "0.10.2"
}