Ether Sneak Peek

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

Vad är Ether Sneak Peek?

Ether Sneak Peek är en Chrome-tillägg utvecklad av https://www.squobble.com, och dess huvudfunktion är "Instantly see the balance of an Ethereum address mentioned on any web page.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Ether Sneak Peek-förlängningens CRX-fil

Ladda ner Ether Sneak Peek-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Ether Sneak Peek Ether Sneak Peek
ID achbehnmipmphllfekbgjjdmhehbgoce
Officiell webbadress https://chromewebstore.google.com/detail/ether-sneak-peek/achbehnmipmphllfekbgjjdmhehbgoce
Beskrivning Instantly see the balance of an Ethereum address mentioned on any web page.
Filstorlek 15.23 KB
Antal Installationer 56
Aktuell Version 0.4
Senast Uppdaterad 2017-07-25
Publiceringsdatum 2017-07-25
Betyg 3.00/5 Totalt 2 Betyg
Utvecklare https://www.squobble.com
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        }
    ]
}