Scatter
Decentralized signature, identity and authentication system.
Was ist Scatter?
Scatter ist eine Chrome-Erweiterung, die von https://get-scatter.com entwickelt wurde, und ihr Hauptmerkmal ist "Decentralized signature, identity and authentication system.".
Erweiterungsscreenshots
Scatter-Erweiterungs-CRX-Datei herunterladen
Laden Sie Scatter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | ammjpmhgckkpcamddpolhchgomcojkle |
Offizielle URL | https://chrome.google.com/webstore/detail/ammjpmhgckkpcamddpolhchgomcojkle |
Beschreibung | Decentralized signature, identity and authentication system. |
Dateigröße | 3.22 MB |
Installationsanzahl | 20,621 |
Aktuelle Version | 6.3.0 |
Letztes Update | 2019-06-23 |
Veröffentlichungsdatum | 2019-06-23 |
Bewertung | 4.43/5 Insgesamt 103 Bewertungen |
Entwickler | https://get-scatter.com |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } } |