EOS Authenticator

A Chrome extension for users to sign transactions from EOSIO apps. The Chrome extension provides the following: - It provides…

EOS Authenticatorとは何ですか?

EOS Authenticatorはhttp://bloks.ioによって開発されたChromeの拡張機能で、その主な機能は「A Chrome extension for users to sign transactions from EOSIO apps. The Chrome extension provides the following: - It provides…」です。

拡張機能のスクリーンショット

screenshot
screenshot

EOS Authenticator拡張機能のCRXファイルをダウンロード

EOS Authenticator拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        A Chrome extension for users to sign transactions from EOSIO apps. 

The Chrome extension provides the following:
- It provides seamless multi-network support.
- It securely stores private keys and signs transactions, showing a richly formatted Ricardian Contract, which provide users with a human readable explanation of the action(s) the app is proposing and allows them to accept the contract’s terms.
- By following the Manifest Specification, it shows metadata about apps to end users as they are signing transactions, which provides users with a better sense of trust for the app they are interacting with. It also runs various transaction pre-flight security checks comparing the contents of a transaction request with what apps have declared about themselves.

Integrating with Apps
The Chrome extension follows the EOSIO Authentication Transport Protocol Specification. There is some configuration needed in the integrating app, and there are a few different ways to interact with the Chrome extension from an integrating app.

Developer Pre-Reqs:
- Make sure your app follows the Manifest Specification v0.7.0.
- Make sure your application's Ricardian Contracts follow the Ricardian Specification v0.1.1.

Choose a solution for interacting with the Chrome extension:
-(Easiest) Use the Universal Authenticator Library.
-Use the EOSJS Signature Provider for desktop browsers.
-Directly use the Window Messaging API.

Disclaimer: This product is published by EOS Cafe Block by using open source code from https://github.com/EOSIO/eosio-reference-chrome-extension-authenticator-app. There is no guarantee to its functionality and EOS Cafe Block provides no warranty to the long term support and functionality of the application. 

This application is currently in BETA and you are responsible for implementing reasonable measures for securing the wallet, including any requisite private key(s) or other credentials necessary to access the extension. If your private key(s) or other access credentials are lost, you may lose access to your application. EOS Cafe Block is not responsible for any losses, costs or expenses relating to lost access credentials.                    

拡張機能の基本情報

名前 EOS Authenticator EOS Authenticator
ID oeljdldpnmdbchonielidgobddffflal
公式URL https://chrome.google.com/webstore/detail/eos-authenticator/oeljdldpnmdbchonielidgobddffflal
説明 A Chrome extension for users to sign transactions from EOSIO apps. The Chrome extension provides the following: - It provides…
ファイルサイズ 3.21 MB
インストール数 249
現在のバージョン 0.1.1
最終更新日 2020-05-01
公開日 2020-04-30
評価 3.00/5 合計 2 レビュー
開発者 http://bloks.io
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://bloks.io
プライバシーポリシーページのURL https://bloks.io/privacy-policy
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "EOS Authenticator",
    "name": "EOS Authenticator",
    "version": "0.1.1",
    "manifest_version": 2,
    "browser_action": {
        "default_title": "EOS Authenticator"
    },
    "options_page": "index.html#options",
    "permissions": [
        "storage",
        "tabs",
        "clipboardWrite"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "icons": {
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ]
}