Ether Sneak Peek

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

Co to jest Ether Sneak Peek?

Ether Sneak Peek to rozszerzenie Chrome opracowane przez https://www.squobble.com, a jego główną funkcją jest „Instantly see the balance of an Ethereum address mentioned on any web page.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Ether Sneak Peek

Pobierz pliki rozszerzeń Ether Sneak Peek w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Ether Sneak Peek Ether Sneak Peek
ID achbehnmipmphllfekbgjjdmhehbgoce
Oficjalny URL https://chromewebstore.google.com/detail/ether-sneak-peek/achbehnmipmphllfekbgjjdmhehbgoce
Opis Instantly see the balance of an Ethereum address mentioned on any web page.
Rozmiar pliku 15.23 KB
Liczba instalacji 56
Aktualna Wersja 0.4
Ostatnia Aktualizacja 2017-07-25
Data Publikacji 2017-07-25
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper https://www.squobble.com
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}