Pegasus
Meet 'the Tangle' from your browser
什么是Pegasus?
Pegasus是由alle.manfredi开发的Chrome扩展程序,该扩展的主要功能是“Meet 'the Tangle' from your browser”。
扩展截图
下载Pegasus扩展crx文件
下载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 |
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": [ "*" ] } } |