Ether Sneak Peek

Instantly see the balance of an Ethereum address mentioned on any web page.

什么是Ether Sneak Peek?

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

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Ether Sneak Peek扩展crx文件

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

扩展使用说明

                        This extension adds a small icon to the right of each Ethereum address on every web site. Clicking it shows you the current balance of the address.

Data is pulled from etherscan.io (or from etherchain.org, if etherscan.io is down).

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

Orange juice fund: 0x4757c6439D859986BFd3FCd82Bb9921e8B9Ddf13                    

扩展基本信息

名称 Ether Sneak Peek Ether Sneak Peek
ID achbehnmipmphllfekbgjjdmhehbgoce
官方URL https://chromewebstore.google.com/detail/ether-sneak-peek/achbehnmipmphllfekbgjjdmhehbgoce
简介 Instantly see the balance of an Ethereum address mentioned on any web page.
文件大小 15.23 KB
安装次数 56
当前版本 0.4
更新时间 2017-07-25
上架时间 2017-07-25
评分 3.00/5 共2次评分
开发者 https://www.squobble.com
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Ether Sneak Peek",
    "version": "0.4",
    "description": "Instantly see the balance of an Ethereum address mentioned on any web page.",
    "permissions": [
        "https:\/\/etherscan.io\/",
        "https:\/\/etherchain.org\/"
    ],
    "web_accessible_resources": [
        "i\/ethersneakpeek_logo32.png"
    ],
    "icons": {
        "128": "i\/ethersneakpeek_logo128.png",
        "48": "i\/ethersneakpeek_logo48.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ]
}