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
官方網址 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"
        }
    ]
}