Bitcoin Sneak Peek

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

Apa itu Bitcoin Sneak Peek?

Bitcoin Sneak Peek adalah ekstensi Chrome yang dikembangkan oleh https://www.squobble.com, dan fitur utamanya adalah "Instantly see the balance of a Bitcoin address mentioned on any web page.".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Bitcoin Sneak Peek

Unduh file ekstensi Bitcoin Sneak Peek dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Bitcoin Sneak Peek Bitcoin Sneak Peek
ID nmoioahfkdpfpjngcljhcphglbdppdmj
URL Resmi https://chromewebstore.google.com/detail/bitcoin-sneak-peek/nmoioahfkdpfpjngcljhcphglbdppdmj
Deskripsi Instantly see the balance of a Bitcoin address mentioned on any web page.
Ukuran File 14.81 KB
Jumlah Instalasi 176
Versi Saat Ini 0.5
Terakhir Diperbarui 2017-12-14
Tanggal Publikasi 2017-12-14
Penilaian 4.50/5 Total 16 Penilaian
Pengembang https://www.squobble.com
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
        }
    ]
}