ZilPay

ZilPay browser Extension for zilliqa blockchain

ZilPayคืออะไร?

ZilPay เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://zilpay.xyz และคุณลักษณะหลักของมันคือ "ZilPay browser Extension for zilliqa blockchain"

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        The extension injects the Zilliqa web3 API into every website's javascript context, so that dapps can read from the blockchain.

ZilPay also lets the user create and manage their own identities (via private keys, local client wallet and hardware wallets like Ledger), so when a Dapp wants to perform a transaction and write to the blockchain, the user gets a secure interface to review the transaction, before approving or rejecting it.

Because it adds functionality to the normal browser context, ZilPay requires the permission to read and write to any webpage. You can always "view the source" of ZilPay the way you do any Chrome extension, or view the source code on Github: https://github.com/zilpay/zil-pay                    

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

ชื่อ ZilPay ZilPay
ID klnaejjgbibmhlephnhpmaofohgkpgkd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/zilpay/klnaejjgbibmhlephnhpmaofohgkpgkd
คำอธิบาย ZilPay browser Extension for zilliqa blockchain
ขนาดไฟล์ 795 KB
จำนวนการติดตั้ง 65,767
เวอร์ชันปัจจุบัน 1.3.9
อัปเดตครั้งล่าสุด 2024-02-24
วันที่เผยแพร่ 2020-06-03
คะแนน 3.74/5 รวมทั้งหมด 38 คะแนน
ผู้พัฒนา https://zilpay.xyz
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://zilpay.io
URL หน้าช่วยเหลือ https://t.me/zilpay
URL หน้านโยบายความเป็นส่วนตัว https://zilpay.io/extension-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ZilPay",
    "author": "https:\/\/zilpay.io\/",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "38": "icons\/icon38.png",
        "39": "icons\/icon39.png",
        "48": "icons\/icon48.png",
        "96": "icons\/icon96.png",
        "128": "icons\/icon128.png"
    },
    "storage": {
        "managed_schema": "schema.json"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "chromeos": "Alt+Shift+Z",
                "linux": "Alt+Shift+Z",
                "mac": "Alt+Shift+Z",
                "windows": "Alt+Shift+Z"
            }
        }
    },
    "permissions": [
        "storage",
        "notifications",
        "activeTab",
        "alarms",
        "https:\/\/api.zilliqa.com\/",
        "https:\/\/dev-api.zilliqa.com\/",
        "http:\/\/127.0.0.1\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "inpage.js",
        "phishing.html"
    ],
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon19.png",
            "38": "icons\/icon38.png"
        },
        "default_title": "ZilPay",
        "default_popup": "index.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "version": "1.3.9",
    "short_name": "ZilPay",
    "description": "ZilPay browser Extension for zilliqa blockchain"
}