Ethereum Swarm Extension

Web3 framework for Ethereum Swarm dApps

Ethereum Swarm Extension란 무엇입니까?

Ethereum Swarm Extension은(는) https://ethswarm.org에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Web3 framework for Ethereum Swarm dApps"입니다.

확장 프로그램 스크린샷

screenshot

Ethereum Swarm Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Ethereum Swarm users can load decentralised applications in a secure way meanwhile applications that utilize this extension's framework futureset can achieve higher user experience.

For features and up-to-date information, please visit its public GitHub page: https://github.com/ethersphere/swarm-extension                    

확장 프로그램 기본 정보

이름 Ethereum Swarm Extension Ethereum Swarm Extension
ID afpgelfcknfbbfnipnomfdbbnbbemnia
공식 URL https://chromewebstore.google.com/detail/ethereum-swarm-extension/afpgelfcknfbbfnipnomfdbbnbbemnia
설명 Web3 framework for Ethereum Swarm dApps
파일 크기 5.28 MB
설치 횟수 78
현재 버전 0.7.1
최근 업데이트 2022-11-24
출시 날짜 2021-11-14
평점 5.00/5 총 4 개의 평점
개발자 https://ethswarm.org
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/ethersphere/swarm-extension
도움말 페이지 URL https://github.com/ethersphere/swarm-extension/issues
개인정보 보호 정책 페이지 URL https://github.com/ethersphere/swarm-extension/blob/master/PRIVACY_POLICY.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ethereum Swarm Extension",
    "short_name": "Swarm Extension",
    "version": "0.7.1",
    "manifest_version": 3,
    "permissions": [
        "webRequest",
        "declarativeNetRequest",
        "tabs",
        "storage",
        "webNavigation"
    ],
    "author": "nugaon",
    "description": "Web3 framework for Ethereum Swarm dApps",
    "icons": {
        "48": "assets\/swarm.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Swarm Extension",
        "default_popup": "popup-page\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "document-start.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}