Pegasus

Meet 'the Tangle' from your browser

Pegasusคืออะไร?

Pegasus เป็นส่วนขยายของ Chrome ที่พัฒนาโดย alle.manfredi และคุณลักษณะหลักของมันคือ "Meet 'the Tangle' from your browser"

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

screenshot
screenshot
screenshot

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

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

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

                        Pegasus is a chrome extension that implements a wallet for the IOTA cryptocurrency. In addition, Pegasus injects the iotajs library into the content script of each page that a user visit, allowing developers to interact with IOTA Tangle without paying attention on how to keep the seed safe in a safe way thanks to pegasus-connector. It allows users to give permission to Dapps to communicate with the wallet via injection. As long as the user does not confirm the permission, it will not be possible to use it.                    

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

ชื่อ Pegasus Pegasus
ID calgckkhkgbbefgebdlodkhophhjgcal
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/pegasus/calgckkhkgbbefgebdlodkhophhjgcal
คำอธิบาย Meet 'the Tangle' from your browser
ขนาดไฟล์ 4.47 MB
จำนวนการติดตั้ง 111
เวอร์ชันปัจจุบัน 0.12.0
อัปเดตครั้งล่าสุด 2020-06-29
วันที่เผยแพร่ 2020-06-29
คะแนน 4.33/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา alle.manfredi
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://allemanfredi.github.io/pegasus-website/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pegasus",
    "short_name": "pegasus",
    "description": "Meet 'the Tangle' from your browser",
    "version": "0.12.0",
    "content_security_policy": "script-src 'self' 'unsafe-eval' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk=' 'sha256-IThiKMnsg0UHaLmP7sJxZpd\/ohvINImwjxFJyxGFSlk='; object-src 'self'",
    "browser_action": {
        "default_popup": "packages\/popup\/build\/index.html",
        "default_title": "Pegasus"
    },
    "author": "Alessandro Manfredi",
    "permissions": [
        "notifications",
        "storage",
        "unlimitedStorage"
    ],
    "icons": {
        "64": "packages\/popup\/build\/material\/logo\/pegasus-64.png",
        "128": "packages\/popup\/build\/material\/logo\/pegasus-128.png"
    },
    "background": {
        "scripts": [
            "dist\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "file:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "dist\/injection.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        "dist\/inpage-client.js"
    ],
    "externally_connectable": {
        "ids": [
            "*"
        ]
    }
}