Ether Sneak Peek

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

ما هو Ether Sneak Peek؟

Ether Sneak Peek هو إضافة Chrome تم تطويرها بواسطة https://www.squobble.com، والميزة الرئيسية لها هي "Instantly see the balance of an Ethereum address mentioned on any web page.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Ether Sneak Peek

قم بتنزيل ملفات الامتداد Ether Sneak Peek بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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                    

معلومات أساسية عن التمديد

الاسم Ether Sneak Peek Ether Sneak Peek
ID achbehnmipmphllfekbgjjdmhehbgoce
عنوان URL الرسمي https://chromewebstore.google.com/detail/ether-sneak-peek/achbehnmipmphllfekbgjjdmhehbgoce
الوصف Instantly see the balance of an Ethereum address mentioned on any web page.
حجم الملف 15.23 KB
عدد التثبيتات 56
النسخة الحالية 0.4
آخر تحديث 2017-07-25
تاريخ النشر 2017-07-25
تقييم 3.00/5 مجموع تقييمات 2
المطور https://www.squobble.com
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة 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"
        }
    ]
}