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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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:\/\/*\/*"
            ]
        }
    ]
}