Pegasus
Meet 'the Tangle' from your browser
Pegasus क्या है?
Pegasus alle.manfredi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Meet 'the Tangle' from your browser"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Pegasus एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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": [ "*" ] } } |