Ethereum Swarm Extension

Web3 framework for Ethereum Swarm dApps

Ethereum Swarm Extensionคืออะไร?

Ethereum Swarm Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://ethswarm.org และคุณลักษณะหลักของมันคือ "Web3 framework for Ethereum Swarm dApps"

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

screenshot

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

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

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

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