Bitcoin Sneak Peek

Instantly see the balance of a Bitcoin address mentioned on any web page.

O que é Bitcoin Sneak Peek?

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

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Bitcoin Sneak Peek

Baixe arquivos de extensão Bitcoin 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 Bitcoin address on every web site. Clicking it shows you the current balance of the address and the total received coins.

Data is pulled from Blockchain.info (or from blockexplorer.com, if Blockchain is down).

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

Changelog: https://github.com/steven2358/BitcoinSneakPeek/commits/master

Orange juice fund: 1KLoepWkHVEMksdMCsu7nc5amfTvVb2qvk                    

Informações Básicas da Extensão

Nome Bitcoin Sneak Peek Bitcoin Sneak Peek
ID nmoioahfkdpfpjngcljhcphglbdppdmj
URL Oficial https://chromewebstore.google.com/detail/bitcoin-sneak-peek/nmoioahfkdpfpjngcljhcphglbdppdmj
Descrição Instantly see the balance of a Bitcoin address mentioned on any web page.
Tamanho do Arquivo 14.81 KB
Contagem de Instalações 176
Versão Atual 0.5
Última Atualização 2017-12-14
Data de Publicação 2017-12-14
Classificação 4.50/5 Total de 16 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": "Bitcoin Sneak Peek",
    "version": "0.5",
    "description": "Instantly see the balance of a Bitcoin address mentioned on any web page.",
    "permissions": [
        "https:\/\/blockchain.info\/",
        "https:\/\/blockexplorer.com\/"
    ],
    "web_accessible_resources": [
        "i\/bitcoinsneakpeak32.png"
    ],
    "icons": {
        "128": "i\/logo128x128.png",
        "48": "i\/logo48x48.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ]
}