EOS Plugin
EOS Plugin allows you to run EOS dApps right in your browser without running a full EOS node.
EOS Plugin란 무엇입니까?
EOS Plugin은(는) https://eosplugin.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "EOS Plugin allows you to run EOS dApps right in your browser without running a full EOS node."입니다.
확장 프로그램 스크린샷
EOS Plugin 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
EOS Plugin is a bridge that give you a chance you to visit the future world of distributed web in your browser today. It allows you to run EOS dApps right in your browser without running a full EOS node. Open source software: work with dApps, create anonymous identities, send/receive tokens, sign transactions, etc.
확장 프로그램 기본 정보
이름 | |
ID | onephhclgccdnebcnofmkdgkpkendcnd |
공식 URL | https://chrome.google.com/webstore/detail/eos-plugin/onephhclgccdnebcnofmkdgkpkendcnd |
설명 | EOS Plugin allows you to run EOS dApps right in your browser without running a full EOS node. |
파일 크기 | 1.83 MB |
설치 횟수 | 671 |
현재 버전 | 1.0.2 |
최근 업데이트 | 2019-03-08 |
출시 날짜 | 2019-03-08 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | https://eosplugin.io |
결제 유형 | free |
도움말 페이지 URL | https://github.com/EOSWebWallet/EOSPlugin-Project |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "EOS Plugin", "description": "EOS Plugin allows you to run EOS dApps right in your browser without running a full EOS node.", "version": "1.0.2", "permissions": [ "tabs", "activeTab", "storage" ], "browser_action": { "default_title": "EOS Plugin", "default_popup": "index.html", "default_icon": "icon.png" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "web_accessible_resources": [ "assets\/css\/*", "assets\/js\/*", "assets\/fonts\/*", "inject.js" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ] } } |