Bittrex Enhanced

Enhance your Bittrex experience by including USD values alongside BTC & ETH prices, and using the TradingView chart widget instead.

Bittrex Enhanced là gì?

Bittrex Enhanced là một tiện ích mở rộng Chrome được phát triển bởi CryptoNirvana, và tính năng chính của nó là "Enhance your Bittrex experience by including USD values alongside BTC & ETH prices, and using the TradingView chart widget instead.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

                        Enhances the Bittrex experience by:

 (1) providing accompanying USD and BTC values alongside BTC, ETH and USDT values in:

     * General markets page (/ and /Home/Markets) 
          * last price
     * Market specific page (/Market/Index?MarketName=BTC|ETH|USDT-*) 
          * order book: bid
          * order book: ask
          * market history: bid
          * market history: total btc
          * open and closed orders: bid/adk + cost/proceeds
     * Balance page (/Balance) 
          * est. btc value

(2) swapping out the native Bittrex chart with the TradingView Advanced Real-Time Chart Widget, including settings, and

(3) providing the estimated BTC and USD unit price of assets you own.

Use the chrome browser action button to enable/disable functionality and personalize.

Note: Conversions use the Bittrex BTC price. ETH price is derived from BTC-ETH*Bittrex(BTCUSD). 

Note: All processing is done client side - no servers involved, and your privacy is 100% intact. 

For those interested in the code: https://github.com/nirvanatikku/bittrex-enhanced

=====

CHANGELOG

- 1.10.0: Fixes and Improvements: 6dp for prices < $1; support www.bittrex.com; improve chart load

- 1.9.0: Resolve fiat prices and values for orders (market page and orders/history page)

- 1.8.0: Support $USDT* markets and Improve UI  (explicit columns instead of inline text)

- 1.7.0: Support `Dark` theme setting for TradingView chart

- 1.6.3: Add estimated BTC price for each asset owned in balance view (e.g. ETH/BTC price)

- 1.6.0: Introduce TradingView Chart settings (width, height, interval, language, timezone, styles, studies) and Security Enhancements

- 1.5: Support ETH-USD conversion for ETH* markets (using BTC-ETH * (BTC-USD))

- 1.4.1: Disable default chart indicators and fix for error alert

- 1.4: Introduce Settings (via popup)

- 1.3: Introduce TradingViewChart

- 1.2: Introduce BTC-USD conversion for Balance

- 1.1: Introduce BTC-USD conversion for market history in BTC* markets

- 1.0: Introduce BTC-USD conversion for BTC* markets

CryptoNirvana is not responsible for any losses resulting from use of the Bittrex Enhanced extension.                    

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

Tên Bittrex Enhanced Bittrex Enhanced
ID opefelljddckamffnphohkknfgbdnham
URL Chính Thức https://chromewebstore.google.com/detail/bittrex-enhanced/opefelljddckamffnphohkknfgbdnham
Mô tả Enhance your Bittrex experience by including USD values alongside BTC & ETH prices, and using the TradingView chart widget instead.
Kích Thước Tệp 37.5 KB
Số Lần Cài Đặt 4,697
Phiên Bản Hiện Tại 1.10.0
Cập Nhật Lần Cuối 2017-12-24
Ngày Phát Hành 2017-12-24
Đánh Giá 4.01/5 Tổng số 140 Đánh Giá
Nhà Phát Triển CryptoNirvana
Loại Thanh Toán free
Trang Web Mở Rộng https://cryptonirvana.com
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bittrex Enhanced",
    "description": "Enhance your Bittrex experience by including USD values alongside BTC & ETH prices, and using the TradingView chart widget instead.",
    "version": "1.10.0",
    "browser_action": {
        "default_title": "Enhance Trex",
        "default_popup": "settings.html"
    },
    "permissions": [
        "storage",
        "activeTab",
        "https:\/\/bittrex.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.bittrex.com\/Market\/Index?MarketName=BTC-*",
                "https:\/\/*.bittrex.com\/Market\/Index?MarketName=ETH-*",
                "https:\/\/*.bittrex.com\/Market\/Index?MarketName=USDT-*",
                "https:\/\/*.bittrex.com\/Balance",
                "https:\/\/*.bittrex.com\/History",
                "https:\/\/*.bittrex.com\/home\/markets*",
                "https:\/\/*.bittrex.com\/Home\/Markets*",
                "https:\/\/*.bittrex.com\/"
            ],
            "js": [
                "enhancer.js",
                "tv.js"
            ],
            "css": [
                "enhanced-styles.css"
            ]
        }
    ],
    "content_security_policy": "default-src 'none'; style-src 'self' 'unsafe-inline'; script-src 'self'; script-src https:\/\/*.tradingview.com;"
}