Ether Sneak Peek

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

What is Ether Sneak Peek?

Ether Sneak Peek is a Chrome extension developed by https://www.squobble.com, and its main feature is "Instantly see the balance of an Ethereum address mentioned on any web page.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Ether Sneak Peek Extension CRX File

Download Ether Sneak Peek extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Ether Sneak Peek Ether Sneak Peek
ID achbehnmipmphllfekbgjjdmhehbgoce
Official URL https://chromewebstore.google.com/detail/ether-sneak-peek/achbehnmipmphllfekbgjjdmhehbgoce
Description Instantly see the balance of an Ethereum address mentioned on any web page.
File Size 15.23 KB
Installation Count 56
Current Version 0.4
Last Updated 2017-07-25
Publish Date 2017-07-25
Rating 3.00/5 Total 2 Ratings
Developer https://www.squobble.com
Email [email protected]
Payment Type free
Supported Languages 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"
        }
    ]
}