Scatter

Decentralized signature, identity and authentication system.

什麼是Scatter?

Scatter是由https://get-scatter.com開發的Chrome擴展程式,該擴展的主要功能是“Decentralized signature, identity and authentication system.”。

擴展截圖

screenshot
screenshot
screenshot

下載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.                    

擴展基本資訊

名稱 Scatter Scatter
ID ammjpmhgckkpcamddpolhchgomcojkle
官方網址 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"
        ]
    }
}