Scatter
Decentralized signature, identity and authentication system.
什么是Scatter?
Scatter是由https://get-scatter.com开发的Chrome扩展程序,该扩展的主要功能是“Decentralized signature, identity and authentication system.”。
扩展截图
下载Scatter扩展crx文件
下载Scatter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" ] } } |