Scatter
Decentralized signature, identity and authentication system.
Что такое Scatter?
Scatter - это расширение Chrome, разработанное https://get-scatter.com, и его основная функция - "Decentralized signature, identity and authentication system.".
Снимки экрана расширения
Скачать файл CRX расширения Scatter
Скачайте файлы расширений 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" ] } } |