xBull Wallet
A powerful but easy to use Stellar network wallet.
xBull Walletคืออะไร?
xBull Wallet เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://xbull.app และคุณลักษณะหลักของมันคือ "A powerful but easy to use Stellar network wallet."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย xBull Wallet
ดาวน์โหลดไฟล์ส่วนขยาย xBull Wallet ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
xBull Wallet is a powerful but easy to use wallet and it's the last wallet you will ever need to handle your Stellar Assets! Our project is completely open source and should always be, you can check the code and audit it at https://github.com/Creit-Tech/xBull-Wallet and learn how to build it yourself at https://xbull.app/installation/. In the crypto space we need to be skeptical so we help you to have your own build if you want to. Check everything you need to know about our wallet in our official website: https://xbull.app but here is a quick list of the main features this wallet has: - Basic Wallet features (send, receive, add assets, etc). - Create multiple wallets and accounts, all of them created from Mnemonic phrases (24 words). Your keys, your coins. - Use your favorite hardware wallets: Ledger wallets and Trezor Wallets are supported. - Trade features: Place offers in the SDEX, make quick swaps and open limit orders. - Use the horizon API you want, by default we listed those from Stellar and Public node (which we are supporters) but you are free to use the one you prefer. - Set the default fee for your transactions - A built in laboratory for advanced users: Create operations chains or sign custom XDRs. - And many more! xBull Wallet is a product created by the Creit Tech's team and we are proud of it, if you have any question about it please reach us on Twitter at https://twitter.com/xBullWallet
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | xBull Wallet |
ID | omajpeaffjgmlpmhbfdjepdejoemifpe |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/xbull-wallet/omajpeaffjgmlpmhbfdjepdejoemifpe |
คำอธิบาย | A powerful but easy to use Stellar network wallet. |
ขนาดไฟล์ | 4.06 MB |
จำนวนการติดตั้ง | 782 |
เวอร์ชันปัจจุบัน | 1.19.0 |
อัปเดตครั้งล่าสุด | 2024-03-04 |
วันที่เผยแพร่ | 2021-08-05 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | https://xbull.app |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้านโยบายความเป็นส่วนตัว | https://xbull.app/privacy |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "xBull Wallet", "version": "1.19.0", "description": "A powerful but easy to use Stellar network wallet.", "homepage_url": "https:\/\/xbull.app", "icons": { "16": ".\/assets\/icons\/extension-icon-16.png", "48": ".\/assets\/icons\/extension-icon-48.png", "128": ".\/assets\/icons\/extension-icon-128.png" }, "action": { "default_title": "xBull Wallet", "default_icon": ".\/assets\/icons\/extension-icon-128.png" }, "permissions": [ "storage", "*:\/\/connect.trezor.io\/8\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "js": [ "content-script.js" ], "matches": [ "https:\/\/*\/*", "http:\/\/localhost\/*" ], "match_about_blank": true, "all_frames": true }, { "matches": [ "*:\/\/connect.trezor.io\/8\/popup.html" ], "js": [ ".\/assets\/vendor\/trezor-content-script.js" ] } ], "web_accessible_resources": [ { "resources": [ "sdk.js", "assets\/*" ], "matches": [ "https:\/\/*\/*", "http:\/\/localhost\/*" ] } ] } |