BitBox

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

Co to jest BitBox?

BitBox to rozszerzenie Chrome opracowane przez Leo Wandersleb, a jego główną funkcją jest „Allows to quickly get information on Bitoin addresses in any webpage through a tooltip.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia BitBox

Pobierz pliki rozszerzeń BitBox w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa BitBox BitBox
ID bcjdjalcfgbmbmdajpbbaboikhhlobkc
Oficjalny URL https://chrome.google.com/webstore/detail/bitbox/bcjdjalcfgbmbmdajpbbaboikhhlobkc
Opis Allows to quickly get information on Bitoin addresses in any webpage through a tooltip.
Rozmiar pliku 109 KB
Liczba instalacji 110
Aktualna Wersja 1.0.4
Ostatnia Aktualizacja 2014-04-07
Data Publikacji 2014-04-07
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Leo Wandersleb
Typ Płatności free
Obsługiwane Języki 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
}