Bittensor Wallet
Manage your Bittensor accounts outside of dapps.
Bittensor Walletとは何ですか?
Bittensor WalletはOpentensor Foundationによって開発されたChromeの拡張機能で、その主な機能は「Manage your Bittensor accounts outside of dapps.」です。
拡張機能のスクリーンショット
Bittensor Wallet拡張機能のCRXファイルをダウンロード
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 |
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 |
Eメール | [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" } |