BitBox

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

Was ist BitBox?

BitBox ist eine Chrome-Erweiterung, die von Leo Wandersleb entwickelt wurde, und ihr Hauptmerkmal ist "Allows to quickly get information on Bitoin addresses in any webpage through a tooltip.".

Erweiterungsscreenshots

screenshot

BitBox-Erweiterungs-CRX-Datei herunterladen

Laden Sie BitBox-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name BitBox BitBox
ID bcjdjalcfgbmbmdajpbbaboikhhlobkc
Offizielle URL https://chrome.google.com/webstore/detail/bitbox/bcjdjalcfgbmbmdajpbbaboikhhlobkc
Beschreibung Allows to quickly get information on Bitoin addresses in any webpage through a tooltip.
Dateigröße 109 KB
Installationsanzahl 110
Aktuelle Version 1.0.4
Letztes Update 2014-04-07
Veröffentlichungsdatum 2014-04-07
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Leo Wandersleb
Zahlungsart free
Unterstützte Sprachen 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
}