Pegasus

Meet 'the Tangle' from your browser

Cos'è Pegasus?

Pegasus è un'estensione di Chrome sviluppata da alle.manfredi, e la sua funzione principale è "Meet 'the Tangle' from your browser".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Pegasus

Scarica i file di estensione Pegasus in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Pegasus Pegasus
ID calgckkhkgbbefgebdlodkhophhjgcal
URL Ufficiale https://chromewebstore.google.com/detail/pegasus/calgckkhkgbbefgebdlodkhophhjgcal
Descrizione Meet 'the Tangle' from your browser
Dimensione del File 4.47 MB
Conteggio Installazioni 111
Versione Corrente 0.12.0
Ultimo Aggiornamento 2020-06-29
Data di Pubblicazione 2020-06-29
Valutazione 4.33/5 Totale 3 Valutazioni
Sviluppatore alle.manfredi
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://allemanfredi.github.io/pegasus-website/
Lingue Supportate 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": [
            "*"
        ]
    }
}