Ether Sneak Peek

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

Hvad er Ether Sneak Peek?

Ether Sneak Peek er en Chrome-udvidelse udviklet af https://www.squobble.com, og dens hovedfunktion er "Instantly see the balance of an Ethereum address mentioned on any web page.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot

Download Ether Sneak Peek-udvidelses-CRX-fil

Download Ether Sneak Peek-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Ether Sneak Peek Ether Sneak Peek
ID achbehnmipmphllfekbgjjdmhehbgoce
Officiel URL https://chromewebstore.google.com/detail/ether-sneak-peek/achbehnmipmphllfekbgjjdmhehbgoce
Beskrivelse Instantly see the balance of an Ethereum address mentioned on any web page.
Filstørrelse 15.23 KB
Antal Installationer 56
Nuværende Version 0.4
Senest Opdateret 2017-07-25
Udgivelsesdato 2017-07-25
Bedømmelse 3.00/5 Samlet 2 Bedømmelser
Udvikler https://www.squobble.com
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
        }
    ]
}