AggrTrade

Live cryptocurrency trades visualizer.

AggrTrade là gì?

AggrTrade là một tiện ích mở rộng Chrome được phát triển bởi Aggr Trade, và tính năng chính của nó là "Live cryptocurrency trades visualizer.".

Ả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 AggrTrade

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

                        Live cryptocurrency trades visualizer.

Main App developed by Kevin "Tucsky" Rostagni 
Send him love via donates <3 (Settings page)

What it do:

Show LIVE trades from exchanges on a specific pair (default BTCUSD)
Filter noise by aggregating trades with the same timestamp
Chart averaged price, buy & sell volume, price sma, volume ema
Play audio when trade show up based on volume
Visualize historical data (when available)


The app fetch the available exchanges products when it starts the first time. So technically every pairs of the supported exchanges are supported. Just type the name in the "pair" settings (without any spaces or caret !).                    

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

Tên AggrTrade AggrTrade
ID dachmjaingllkdmljlfhaphbflehijab
URL Chính Thức https://chromewebstore.google.com/detail/aggrtrade/dachmjaingllkdmljlfhaphbflehijab
Mô tả Live cryptocurrency trades visualizer.
Kích Thước Tệp 97.2 KB
Số Lần Cài Đặt 2,612
Phiên Bản Hiện Tại 1.24
Cập Nhật Lần Cuối 2022-05-06
Ngày Phát Hành 2021-04-13
Đánh Giá 4.45/5 Tổng số 214 Đánh Giá
Nhà Phát Triển Aggr Trade
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://aggrtrade-extension.com/privacy.html
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AggrTrade",
    "description": "Live cryptocurrency trades visualizer.",
    "manifest_version": 2,
    "version": "1.24",
    "background": {
        "scripts": [
            "background.js",
            "\/jquery\/jquery-3.6.0.min.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content.js",
                "\/jquery\/jquery-3.5.1.min.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "cookies",
        "tabs",
        "",
        "storage"
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "AggrTrade"
    },
    "icons": {
        "128": "icons\/icon128.png",
        "48": "icons\/icon48.png",
        "16": "icons\/icon16.png"
    }
}