Bitcoin Sneak Peek

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

Was ist Bitcoin Sneak Peek?

Bitcoin Sneak Peek ist eine Chrome-Erweiterung, die von https://www.squobble.com entwickelt wurde, und ihr Hauptmerkmal ist "Instantly see the balance of a Bitcoin address mentioned on any web page.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Bitcoin Sneak Peek-Erweiterungs-CRX-Datei herunterladen

Laden Sie Bitcoin Sneak Peek-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Bitcoin Sneak Peek Bitcoin Sneak Peek
ID nmoioahfkdpfpjngcljhcphglbdppdmj
Offizielle URL https://chromewebstore.google.com/detail/bitcoin-sneak-peek/nmoioahfkdpfpjngcljhcphglbdppdmj
Beschreibung Instantly see the balance of a Bitcoin address mentioned on any web page.
Dateigröße 14.81 KB
Installationsanzahl 176
Aktuelle Version 0.5
Letztes Update 2017-12-14
Veröffentlichungsdatum 2017-12-14
Bewertung 4.50/5 Insgesamt 16 Bewertungen
Entwickler https://www.squobble.com
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}