Scatter
Decentralized signature, identity and authentication system.
Scatter란 무엇입니까?
Scatter은(는) https://get-scatter.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Decentralized signature, identity and authentication system."입니다.
확장 프로그램 스크린샷
Scatter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Scatter is a decentralized signature, identity, private data and authentication solution. It runs locally on your machine and is powered by asymmetrical encryption allowing you to authenticate with websites without hitting a centralized server. You can fill out your identities once and applications can request information from them so that you never have to fill out forms. You may add blockchain accounts to identities and use them to provide signatures for transactions without ever giving up your keys. Scatter is a revolutionary tool which heightens user experience, security, and makes the blockchain easier to use.
확장 프로그램 기본 정보
이름 | |
ID | ammjpmhgckkpcamddpolhchgomcojkle |
공식 URL | https://chrome.google.com/webstore/detail/ammjpmhgckkpcamddpolhchgomcojkle |
설명 | Decentralized signature, identity and authentication system. |
파일 크기 | 3.22 MB |
설치 횟수 | 20,621 |
현재 버전 | 6.3.0 |
최근 업데이트 | 2019-06-23 |
출시 날짜 | 2019-06-23 |
평점 | 4.43/5 총 103 개의 평점 |
개발자 | https://get-scatter.com |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Scatter", "description": "Decentralized signature, identity and authentication system.", "version": "6.3.0", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "browser_action": { "default_icon": "icon.png", "default_popup": "index.html" }, "permissions": [ "storage", "unlimitedStorage", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "inject.js" ], "background": { "scripts": [ "background.js" ] } } |