BitBox

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

什么是BitBox?

BitBox是由Leo Wandersleb开发的Chrome扩展程序,该扩展的主要功能是“Allows to quickly get information on Bitoin addresses in any webpage through a tooltip.”。

扩展截图

screenshot

下载BitBox扩展crx文件

下载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
}