Bitcoin Sneak Peek

Instantly see the balance of a Bitcoin address mentioned on any web page.

Bitcoin Sneak Peek là gì?

Bitcoin 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 a Bitcoin 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 Bitcoin Sneak Peek

Tải xuống các tệp mở rộng Bitcoin 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 Bitcoin address on every web site. Clicking it shows you the current balance of the address and the total received coins.

Data is pulled from Blockchain.info (or from blockexplorer.com, if Blockchain is down).

Source code: https://github.com/steven2358/BitcoinSneakPeek

Changelog: https://github.com/steven2358/BitcoinSneakPeek/commits/master

Orange juice fund: 1KLoepWkHVEMksdMCsu7nc5amfTvVb2qvk                    

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

Tên Bitcoin Sneak Peek Bitcoin Sneak Peek
ID nmoioahfkdpfpjngcljhcphglbdppdmj
URL Chính Thức https://chromewebstore.google.com/detail/bitcoin-sneak-peek/nmoioahfkdpfpjngcljhcphglbdppdmj
Mô tả Instantly see the balance of a Bitcoin address mentioned on any web page.
Kích Thước Tệp 14.81 KB
Số Lần Cài Đặt 176
Phiên Bản Hiện Tại 0.5
Cập Nhật Lần Cuối 2017-12-14
Ngày Phát Hành 2017-12-14
Đánh Giá 4.50/5 Tổng số 16 Đá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": "Bitcoin Sneak Peek",
    "version": "0.5",
    "description": "Instantly see the balance of a Bitcoin address mentioned on any web page.",
    "permissions": [
        "https:\/\/blockchain.info\/",
        "https:\/\/blockexplorer.com\/"
    ],
    "web_accessible_resources": [
        "i\/bitcoinsneakpeak32.png"
    ],
    "icons": {
        "128": "i\/logo128x128.png",
        "48": "i\/logo48x48.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ]
}