Ether Sneak Peek

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

Apa itu Ether Sneak Peek?

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

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Ether Sneak Peek

Unduh file ekstensi Ether 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 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                    

Informasi Dasar Ekstensi

Nama Ether Sneak Peek Ether Sneak Peek
ID achbehnmipmphllfekbgjjdmhehbgoce
URL Resmi https://chromewebstore.google.com/detail/ether-sneak-peek/achbehnmipmphllfekbgjjdmhehbgoce
Deskripsi Instantly see the balance of an Ethereum address mentioned on any web page.
Ukuran File 15.23 KB
Jumlah Instalasi 56
Versi Saat Ini 0.4
Terakhir Diperbarui 2017-07-25
Tanggal Publikasi 2017-07-25
Penilaian 3.00/5 Total 2 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": "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"
        }
    ]
}