Pegasus

Meet 'the Tangle' from your browser

Was ist Pegasus?

Pegasus ist eine Chrome-Erweiterung, die von alle.manfredi entwickelt wurde, und ihr Hauptmerkmal ist "Meet 'the Tangle' from your browser".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Pegasus-Erweiterungs-CRX-Datei herunterladen

Laden Sie Pegasus-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Pegasus Pegasus
ID calgckkhkgbbefgebdlodkhophhjgcal
Offizielle URL https://chromewebstore.google.com/detail/pegasus/calgckkhkgbbefgebdlodkhophhjgcal
Beschreibung Meet 'the Tangle' from your browser
Dateigröße 4.47 MB
Installationsanzahl 111
Aktuelle Version 0.12.0
Letztes Update 2020-06-29
Veröffentlichungsdatum 2020-06-29
Bewertung 4.33/5 Insgesamt 3 Bewertungen
Entwickler alle.manfredi
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://allemanfredi.github.io/pegasus-website/
Unterstützte Sprachen 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": [
            "*"
        ]
    }
}