Bitcoin Sneak Peek

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

Cos'è Bitcoin Sneak Peek?

Bitcoin Sneak Peek è un'estensione di Chrome sviluppata da https://www.squobble.com, e la sua funzione principale è "Instantly see the balance of a Bitcoin address mentioned on any web page.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Bitcoin Sneak Peek

Scarica i file di estensione Bitcoin Sneak Peek in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Bitcoin Sneak Peek Bitcoin Sneak Peek
ID nmoioahfkdpfpjngcljhcphglbdppdmj
URL Ufficiale https://chromewebstore.google.com/detail/bitcoin-sneak-peek/nmoioahfkdpfpjngcljhcphglbdppdmj
Descrizione Instantly see the balance of a Bitcoin address mentioned on any web page.
Dimensione del File 14.81 KB
Conteggio Installazioni 176
Versione Corrente 0.5
Ultimo Aggiornamento 2017-12-14
Data di Pubblicazione 2017-12-14
Valutazione 4.50/5 Totale 16 Valutazioni
Sviluppatore https://www.squobble.com
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}