Scatter

Decentralized signature, identity and authentication system.

Cos'è Scatter?

Scatter è un'estensione di Chrome sviluppata da https://get-scatter.com, e la sua funzione principale è "Decentralized signature, identity and authentication system.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Scatter

Scarica i file di estensione Scatter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Scatter Scatter
ID ammjpmhgckkpcamddpolhchgomcojkle
URL Ufficiale https://chrome.google.com/webstore/detail/ammjpmhgckkpcamddpolhchgomcojkle
Descrizione Decentralized signature, identity and authentication system.
Dimensione del File 3.22 MB
Conteggio Installazioni 20,621
Versione Corrente 6.3.0
Ultimo Aggiornamento 2019-06-23
Data di Pubblicazione 2019-06-23
Valutazione 4.43/5 Totale 103 Valutazioni
Sviluppatore https://get-scatter.com
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        ]
    }
}