Bitcoin Sneak Peek

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

What is Bitcoin Sneak Peek?

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

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Bitcoin Sneak Peek Extension CRX File

Download Bitcoin 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 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                    

Extension Basic Information

Name Bitcoin Sneak Peek Bitcoin Sneak Peek
ID nmoioahfkdpfpjngcljhcphglbdppdmj
Official URL https://chromewebstore.google.com/detail/bitcoin-sneak-peek/nmoioahfkdpfpjngcljhcphglbdppdmj
Description Instantly see the balance of a Bitcoin address mentioned on any web page.
File Size 14.81 KB
Installation Count 176
Current Version 0.5
Last Updated 2017-12-14
Publish Date 2017-12-14
Rating 4.50/5 Total 16 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": "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"
        }
    ]
}