Substrate Connect Extension

Browser extension to manage substrate-based blockchain light clients

Substrate Connect Extensionとは何ですか?

Substrate Connect ExtensionはParity Technologiesによって開発されたChromeの拡張機能で、その主な機能は「Browser extension to manage substrate-based blockchain light clients」です。

拡張機能のスクリーンショット

screenshot
screenshot

Substrate Connect Extension拡張機能のCRXファイルをダウンロード

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
Eメール [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:\/\/*\/*"
            ]
        }
    ]
}