BitBox

Allows to quickly get information on Bitoin addresses in any webpage through a tooltip.

O que é BitBox?

BitBox é uma extensão do Chrome desenvolvida por Leo Wandersleb, e sua principal característica é "Allows to quickly get information on Bitoin addresses in any webpage through a tooltip.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão BitBox

Baixe arquivos de extensão BitBox 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

                        BitBox is an open source https://github.com/dmerrill6/BitChrome tool that extends any Bitcoin address with useful information and a QR-Code. The information is pulled only on mouseover from http://live.insight.is/ which is also open source.                    

Informações Básicas da Extensão

Nome BitBox BitBox
ID bcjdjalcfgbmbmdajpbbaboikhhlobkc
URL Oficial https://chrome.google.com/webstore/detail/bitbox/bcjdjalcfgbmbmdajpbbaboikhhlobkc
Descrição Allows to quickly get information on Bitoin addresses in any webpage through a tooltip.
Tamanho do Arquivo 109 KB
Contagem de Instalações 110
Versão Atual 1.0.4
Última Atualização 2014-04-07
Data de Publicação 2014-04-07
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Leo Wandersleb
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "BitBox",
    "description": "Allows to quickly get information on Bitoin addresses in any webpage through a tooltip.",
    "version": "1.0.4",
    "permissions": [
        "http:\/\/live.insight.is\/"
    ],
    "web_accessible_resources": [
        "bitchrome-48.png"
    ],
    "icons": {
        "16": "bitchrome-16.png",
        "48": "bitchrome-48.png",
        "128": "bitchrome-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "bitcore.js",
                "jquery-1.11.0.min.js",
                "jquery.qtip.min.js",
                "jquery.qrcode-0.7.0.min.js",
                "contentscript.js",
                "content.js"
            ],
            "css": [
                "jquery.qtip.min.css",
                "bitchrome.css"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "manifest_version": 2
}