Ether Sneak Peek

Instantly see the balance of an Ethereum address mentioned on any web page.

Cos'è Ether Sneak Peek?

Ether Sneak Peek è un'estensione di Chrome sviluppata da https://www.squobble.com, e la sua funzione principale è "Instantly see the balance of an Ethereum address mentioned on any web page.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Ether Sneak Peek

Scarica i file di estensione Ether Sneak Peek 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

                        This extension adds a small icon to the right of each Ethereum address on every web site. Clicking it shows you the current balance of the address.

Data is pulled from etherscan.io (or from etherchain.org, if etherscan.io is down).

Source code: https://github.com/steven2358/EtherSneakPeek

Orange juice fund: 0x4757c6439D859986BFd3FCd82Bb9921e8B9Ddf13                    

Informazioni di Base sull'Estensione

Nome Ether Sneak Peek Ether Sneak Peek
ID achbehnmipmphllfekbgjjdmhehbgoce
URL Ufficiale https://chromewebstore.google.com/detail/ether-sneak-peek/achbehnmipmphllfekbgjjdmhehbgoce
Descrizione Instantly see the balance of an Ethereum address mentioned on any web page.
Dimensione del File 15.23 KB
Conteggio Installazioni 56
Versione Corrente 0.4
Ultimo Aggiornamento 2017-07-25
Data di Pubblicazione 2017-07-25
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore https://www.squobble.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": "Ether Sneak Peek",
    "version": "0.4",
    "description": "Instantly see the balance of an Ethereum address mentioned on any web page.",
    "permissions": [
        "https:\/\/etherscan.io\/",
        "https:\/\/etherchain.org\/"
    ],
    "web_accessible_resources": [
        "i\/ethersneakpeek_logo32.png"
    ],
    "icons": {
        "128": "i\/ethersneakpeek_logo128.png",
        "48": "i\/ethersneakpeek_logo48.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ]
}