BitBox

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

Hvad er BitBox?

BitBox er en Chrome-udvidelse udviklet af Leo Wandersleb, og dens hovedfunktion er "Allows to quickly get information on Bitoin addresses in any webpage through a tooltip.".

Udvidelsesskærmbilleder

screenshot

Download BitBox-udvidelses-CRX-fil

Download BitBox-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn BitBox BitBox
ID bcjdjalcfgbmbmdajpbbaboikhhlobkc
Officiel URL https://chrome.google.com/webstore/detail/bitbox/bcjdjalcfgbmbmdajpbbaboikhhlobkc
Beskrivelse Allows to quickly get information on Bitoin addresses in any webpage through a tooltip.
Filstørrelse 109 KB
Antal Installationer 110
Nuværende Version 1.0.4
Senest Opdateret 2014-04-07
Udgivelsesdato 2014-04-07
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Leo Wandersleb
Betalingsmetode free
Understøttede Sprog 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
}