Ether Sneak Peek

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

Wat is Ether Sneak Peek?

Ether Sneak Peek is een Chrome-extensie ontwikkeld door https://www.squobble.com, en de belangrijkste functie is "Instantly see the balance of an Ethereum address mentioned on any web page.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Ether Sneak Peek

Download Ether Sneak Peek-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Ether Sneak Peek Ether Sneak Peek
ID achbehnmipmphllfekbgjjdmhehbgoce
Officiële URL https://chromewebstore.google.com/detail/ether-sneak-peek/achbehnmipmphllfekbgjjdmhehbgoce
Beschrijving Instantly see the balance of an Ethereum address mentioned on any web page.
Bestandsgrootte 15.23 KB
Aantal Installaties 56
Huidige Versie 0.4
Laatst Bijgewerkt 2017-07-25
Publicatiedatum 2017-07-25
Beoordeling 3.00/5 Totaal 2 Beoordelingen
Ontwikkelaar https://www.squobble.com
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
        }
    ]
}