Alephium Extension Wallet

Alephium's official extension wallet with powerful features and a clean UI.

Alephium Extension Walletคืออะไร?

Alephium Extension Wallet เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alephium และคุณลักษณะหลักของมันคือ "Alephium's official extension wallet with powerful features and a clean UI."

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Access the security & high performance of Alephium with this brand-new extension wallet

## Alephium extension wallet

Alephium is the first operational sharded L1 blockchain scaling and enhancing PoW & UTXO concepts. Decentralization, self-sovereignty, and security meet high performance, accessibility, and energy efficiency in a dev-friendly network optimized for DeFi & smart contract applications.
This extension wallet is a secure and convenient way for users to manage their digital assets and interact with decentralized applications (dApps) on the Alephium network.

## Main features

### Improved UX
dApp connection, message signing, a token faucet for testnet and devnet, a token list, and  addresses book, all integrated and easily accessible.

### Open source
Crystal-clear transparency: Inspect every line of code, fork and modify with ease.
Find the source code here: https://github.com/alephium/extension-wallet

### Schnorr Signatures
An advanced signature algorithm that allow users to securely sign messages and verify their authenticity, ensuring their transactions are always secure and tamper-proof. It also provides faster transaction processing times and lower transaction fees. 

### Nostr protocol ready
Alephium extension wallet has nostr support, making the wallet capable of signing messages in that social network.

USER SUPPORT: Direct contact on https://alephium.org/discord                    

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

ชื่อ Alephium Extension Wallet Alephium Extension Wallet
ID gdokollfhmnbfckbobkdbakhilldkhcj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/alephium-extension-wallet/gdokollfhmnbfckbobkdbakhilldkhcj
คำอธิบาย Alephium's official extension wallet with powerful features and a clean UI.
ขนาดไฟล์ 2.21 MB
จำนวนการติดตั้ง 8,000
เวอร์ชันปัจจุบัน 0.8.15
อัปเดตครั้งล่าสุด 2024-03-01
วันที่เผยแพร่ 2023-03-05
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Alephium
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://alephium.org/
URL หน้าช่วยเหลือ https://alephium.org/
URL หน้านโยบายความเป็นส่วนตัว https://alephium.org?privacy
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "$schema": "https:\/\/json.schemastore.org\/chrome-manifest.json",
    "name": "Alephium Extension Wallet",
    "description": "Alephium's official extension wallet with powerful features and a clean UI.",
    "version": "0.8.15",
    "manifest_version": 3,
    "action": {
        "default_icon": {
            "16": "assets\/favicon-16.png",
            "48": "assets\/favicon-48.png",
            "128": "assets\/favicon-128.png"
        },
        "default_title": "Alephium",
        "default_popup": "index.html"
    },
    "permissions": [
        "alarms",
        "tabs",
        "storage",
        "notifications",
        "http:\/\/localhost\/*",
        "https:\/\/wallet.testnet.alephium.org\/*",
        "https:\/\/backend.testnet.alephium.org\/*",
        "https:\/\/wallet.mainnet.alephium.org\/*",
        "https:\/\/backend.mainnet.alephium.org\/*"
    ],
    "icons": {
        "16": "assets\/favicon-16.png",
        "48": "assets\/favicon-48.png",
        "128": "assets\/favicon-128.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "inject.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "inpage.js"
            ]
        }
    ]
}