Ether Sneak Peek

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

Ether Sneak Peek là gì?

Ether Sneak Peek là một tiện ích mở rộng Chrome được phát triển bởi https://www.squobble.com, và tính năng chính của nó là "Instantly see the balance of an Ethereum address mentioned on any web page.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Ether Sneak Peek

Tải xuống các tệp mở rộng Ether Sneak Peek dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Ether Sneak Peek Ether Sneak Peek
ID achbehnmipmphllfekbgjjdmhehbgoce
URL Chính Thức https://chromewebstore.google.com/detail/ether-sneak-peek/achbehnmipmphllfekbgjjdmhehbgoce
Mô tả Instantly see the balance of an Ethereum address mentioned on any web page.
Kích Thước Tệp 15.23 KB
Số Lần Cài Đặt 56
Phiên Bản Hiện Tại 0.4
Cập Nhật Lần Cuối 2017-07-25
Ngày Phát Hành 2017-07-25
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://www.squobble.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}