Ether Sneak Peek

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

O que é Ether Sneak Peek?

Ether Sneak Peek é uma extensão do Chrome desenvolvida por https://www.squobble.com, e sua principal característica é "Instantly see the balance of an Ethereum address mentioned on any web page.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Ether Sneak Peek

Baixe arquivos de extensão Ether Sneak Peek no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Ether Sneak Peek Ether Sneak Peek
ID achbehnmipmphllfekbgjjdmhehbgoce
URL Oficial https://chromewebstore.google.com/detail/ether-sneak-peek/achbehnmipmphllfekbgjjdmhehbgoce
Descrição Instantly see the balance of an Ethereum address mentioned on any web page.
Tamanho do Arquivo 15.23 KB
Contagem de Instalações 56
Versão Atual 0.4
Última Atualização 2017-07-25
Data de Publicação 2017-07-25
Classificação 3.00/5 Total de 2 Avaliações
Desenvolvedor https://www.squobble.com
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    ]
}