BitBox

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

Что такое BitBox?

BitBox - это расширение Chrome, разработанное Leo Wandersleb, и его основная функция - "Allows to quickly get information on Bitoin addresses in any webpage through a tooltip.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения BitBox

Скачайте файлы расширений BitBox в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название BitBox BitBox
ID bcjdjalcfgbmbmdajpbbaboikhhlobkc
Официальный URL https://chrome.google.com/webstore/detail/bitbox/bcjdjalcfgbmbmdajpbbaboikhhlobkc
Описание Allows to quickly get information on Bitoin addresses in any webpage through a tooltip.
Размер файла 109 KB
Количество установок 110
Текущая Версия 1.0.4
Последнее Обновление 2014-04-07
Дата публикации 2014-04-07
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Leo Wandersleb
Тип оплаты free
Поддерживаемые языки 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
}