Pegasus
Meet 'the Tangle' from your browser
¿Qué es Pegasus?
Pegasus es una extensión de Chrome desarrollada por alle.manfredi, y su función principal es "Meet 'the Tangle' from your browser".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Pegasus
Descarga archivos de extensión Pegasus en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Pegasus |
ID | calgckkhkgbbefgebdlodkhophhjgcal |
URL Oficial | https://chromewebstore.google.com/detail/pegasus/calgckkhkgbbefgebdlodkhophhjgcal |
Descripción | Meet 'the Tangle' from your browser |
Tamaño del Archivo | 4.47 MB |
Cantidad de Instalaciones | 111 |
Versión Actual | 0.12.0 |
Última Actualización | 2020-06-29 |
Fecha de Publicación | 2020-06-29 |
Calificación | 4.33/5 Total de 3 Calificaciones |
Desarrollador | alle.manfredi |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://allemanfredi.github.io/pegasus-website/ |
Idiomas Soportados | 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": [ "*" ] } } |