BTC Ticker

This extension displays the current btc price on the badge icon.

BTC Ticker là gì?

BTC Ticker là một tiện ích mở rộng Chrome được phát triển bởi n.brooking, và tính năng chính của nó là "This extension displays the current btc price on the badge icon.".

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

screenshot

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

Tải xuống các tệp mở rộng BTC Ticker 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

                        Displays the current Bitcoin price in your selected currency, pulled from your choice of a few exchanges. The price updates every 5 minutes.

Exchange choices:
-bitstamp
-coinbase
-coinbase pro
-kraken

Code here: https://github.com/nickbrooking/btc-ticker

If you like this, you can donate here:
BTC: 
3Anxg3D5iSuYasWCKmfs7Dj7S2Eq5Vhbia

Release notes:

Update 1.5.0: 
  - Switch to Manifest v3
  - Removed inline jQuery
  - Changed update interval to 29 seconds (down from 5 minutes, due to manifest v3 limitation)

Update 1.4.9: Fix broken badge background color

Update 1.4.8: Fix manifest permissions

Update 1.4.7: Fixed manifest file permissions and coinbase pro bug.

Update 1.4.6: Fixed coinbase since they changed their api. Removed btc-e and gdax, added coinbase pro.

Update 1.4.5: Added units to options, so you can display price in mBTC, uBTC, and sat.

Update 1.4.4: Corrected display from 1k to 10k properly. I guess I was in disbelief that it was actually 10k :)

Update 1.4.3: Fixed four digit numbers to still work how they used to.

Update 1.4.2: Added a precision option so you can adjust the display for what works for your machine.

Update 1.4.1: Added support for more than 4 characters, basically now if the number would go >9999 it converts to 1.0k (or 1.1k, 1.2k, etc.) This is about the best I can do given the limitations of the chrome extension api. Also added support for CAD on coinbase, and changed coinbase-exchange to gdax.

Update 1.4.0: Added two new exchanges (coinbase exchange and kraken) and also added the ability to switch currencies (USD and EUR). Also removed mtgox.

Update 1.3.0: Added an options page to choose which exchange to pull ticker data from. (Note: Due to this change there are new permissions, so you will need to re-enable the extension and accept these.)

Update 1.2.1: Updated to mtgox api 2, removed no cache, as it looks like it was being blocked on mtgox's end.

Update 1.2: Added no cache directive so the value should always be the latest. Some users were experiencing the data not updating as often as it should because their browser was caching it.

Update 1.1.1: Changed to use https for mtgox api.

Update 1.1: You can now click the icon to manually update the current price. Be warned, doing this too often (like many times in a few seconds) could get your ip blocked.

1.0: Initial release.                    

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

Tên BTC Ticker BTC Ticker
ID bmcdgjdhkiafkocajnobfhipmjolceeg
URL Chính Thức https://chromewebstore.google.com/detail/btc-ticker/bmcdgjdhkiafkocajnobfhipmjolceeg
Mô tả This extension displays the current btc price on the badge icon.
Kích Thước Tệp 43.89 KB
Số Lần Cài Đặt 3,084
Phiên Bản Hiện Tại 1.5.0
Cập Nhật Lần Cuối 2024-02-15
Ngày Phát Hành 2019-04-11
Đánh Giá 4.04/5 Tổng số 54 Đánh Giá
Nhà Phát Triển n.brooking
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": 3,
    "name": "BTC Ticker",
    "description": "This extension displays the current btc price on the badge icon.",
    "version": "1.5.0",
    "background": {
        "service_worker": "service_worker.js"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/api.coinbase.com\/",
        "https:\/\/api.pro.coinbase.com\/",
        "https:\/\/www.bitstamp.net\/api",
        "https:\/\/api.kraken.com\/"
    ],
    "action": [],
    "icons": {
        "16": "btc_icon_16.png",
        "48": "btc_icon_48.png",
        "128": "btc_icon_128.png"
    },
    "options_page": "options.html"
}