Pegasus
Meet 'the Tangle' from your browser
Qu'est-ce que Pegasus ?
Pegasus est une extension Chrome développée par alle.manfredi, et sa fonction principale est "Meet 'the Tangle' from your browser".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Pegasus
Téléchargez les fichiers d'extension Pegasus au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Pegasus |
ID | calgckkhkgbbefgebdlodkhophhjgcal |
URL Officiel | https://chromewebstore.google.com/detail/pegasus/calgckkhkgbbefgebdlodkhophhjgcal |
Description | Meet 'the Tangle' from your browser |
Taille du Fichier | 4.47 MB |
Nombre d'Installations | 111 |
Version Actuelle | 0.12.0 |
Dernière Mise à Jour | 2020-06-29 |
Date de Publication | 2020-06-29 |
Évaluation | 4.33/5 Total 3 Évaluations |
Développeur | alle.manfredi |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://allemanfredi.github.io/pegasus-website/ |
Langues Prises en Charge | 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": [ "*" ] } } |