Bitcoin Sneak Peek

Instantly see the balance of a Bitcoin address mentioned on any web page.

什么是Bitcoin Sneak Peek?

Bitcoin Sneak Peek是由https://www.squobble.com开发的Chrome扩展程序,该扩展的主要功能是“Instantly see the balance of a Bitcoin address mentioned on any web page.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Bitcoin Sneak Peek扩展crx文件

下载Bitcoin Sneak Peek扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension adds a small icon to the right of each Bitcoin address on every web site. Clicking it shows you the current balance of the address and the total received coins.

Data is pulled from Blockchain.info (or from blockexplorer.com, if Blockchain is down).

Source code: https://github.com/steven2358/BitcoinSneakPeek

Changelog: https://github.com/steven2358/BitcoinSneakPeek/commits/master

Orange juice fund: 1KLoepWkHVEMksdMCsu7nc5amfTvVb2qvk                    

扩展基本信息

名称 Bitcoin Sneak Peek Bitcoin Sneak Peek
ID nmoioahfkdpfpjngcljhcphglbdppdmj
官方URL https://chromewebstore.google.com/detail/bitcoin-sneak-peek/nmoioahfkdpfpjngcljhcphglbdppdmj
简介 Instantly see the balance of a Bitcoin address mentioned on any web page.
文件大小 14.81 KB
安装次数 176
当前版本 0.5
更新时间 2017-12-14
上架时间 2017-12-14
评分 4.50/5 共16次评分
开发者 https://www.squobble.com
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bitcoin Sneak Peek",
    "version": "0.5",
    "description": "Instantly see the balance of a Bitcoin address mentioned on any web page.",
    "permissions": [
        "https:\/\/blockchain.info\/",
        "https:\/\/blockexplorer.com\/"
    ],
    "web_accessible_resources": [
        "i\/bitcoinsneakpeak32.png"
    ],
    "icons": {
        "128": "i\/logo128x128.png",
        "48": "i\/logo48x48.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ]
}