Substrate Connect Extension

Browser extension to manage substrate-based blockchain light clients

Substrate Connect Extensionคืออะไร?

Substrate Connect Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Parity Technologies และคุณลักษณะหลักของมันคือ "Browser extension to manage substrate-based blockchain light clients"

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

screenshot
screenshot

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

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

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

                        A Browser Extension using Substrate Connect and Smoldot light client node modules. This extension, upon browser initiation updates and synchronizes in the well known substrate chain specs (Polkadot, Kusama, Rococo, Westend), keeping them to the latest state inside the extension, for faster chain sync. When a dApp that supports Substrate Connect (e.g. polkadotJS apps) starts in a browser's tab, then it receives the latest specs from the Extension instead of wrap-synching from the last imported inside the dApp; At the same time, the dApp will appear inside the Extension as "connected" - meaning that it is using the Extension's bootnodes and specs;                    

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

ชื่อ Substrate Connect Extension Substrate Connect Extension
ID khccbhhbocaaklceanjginbdheafklai
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/substrate-connect-extensi/khccbhhbocaaklceanjginbdheafklai
คำอธิบาย Browser extension to manage substrate-based blockchain light clients
ขนาดไฟล์ 2.66 MB
จำนวนการติดตั้ง 789
เวอร์ชันปัจจุบัน 0.4.1
อัปเดตครั้งล่าสุด 2024-02-23
วันที่เผยแพร่ 2022-02-07
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Parity Technologies
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://paritytech.github.io/substrate-connect/
URL หน้าช่วยเหลือ https://github.com/paritytech/substrate-connect
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Parity Team ",
    "description": "Browser extension to manage substrate-based blockchain light clients",
    "homepage_url": "https:\/\/github.com\/paritytech\/substrate-connect",
    "name": "Substrate Connect Extension",
    "short_name": "substrate-connect",
    "version": "0.4.1",
    "manifest_version": 3,
    "permissions": [
        "notifications",
        "storage",
        "tabs",
        "alarms"
    ],
    "background": {
        "service_worker": "background\/background.js",
        "type": "module"
    },
    "action": {
        "default_title": "Substrate Connect",
        "default_popup": "ui\/assets\/popup.html"
    },
    "options_ui": {
        "page": "ui\/assets\/options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "js": [
                "content\/content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": ".\/icons\/icon-16.png",
        "32": ".\/icons\/icon-32.png",
        "48": ".\/icons\/icon-48.png",
        "128": ".\/icons\/icon-128.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "inpage\/inpage.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}