Pegasus
Meet 'the Tangle' from your browser
Pegasus란 무엇입니까?
Pegasus은(는) alle.manfredi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Meet 'the Tangle' from your browser"입니다.
확장 프로그램 스크린샷
Pegasus 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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": [ "*" ] } } |