Ether Sneak Peek

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

Qu'est-ce que Ether Sneak Peek ?

Ether Sneak Peek est une extension Chrome développée par https://www.squobble.com, et sa fonction principale est "Instantly see the balance of an Ethereum address mentioned on any web page.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Ether Sneak Peek

Téléchargez les fichiers d'extension Ether Sneak Peek au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Ether Sneak Peek Ether Sneak Peek
ID achbehnmipmphllfekbgjjdmhehbgoce
URL Officiel https://chromewebstore.google.com/detail/ether-sneak-peek/achbehnmipmphllfekbgjjdmhehbgoce
Description Instantly see the balance of an Ethereum address mentioned on any web page.
Taille du Fichier 15.23 KB
Nombre d'Installations 56
Version Actuelle 0.4
Dernière Mise à Jour 2017-07-25
Date de Publication 2017-07-25
Évaluation 3.00/5 Total 2 Évaluations
Développeur https://www.squobble.com
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
        }
    ]
}