AggrTrade

Live cryptocurrency trades visualizer.

AggrTrade란 무엇입니까?

AggrTrade은(는) Aggr Trade에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Live cryptocurrency trades visualizer."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

AggrTrade 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 !).                    

확장 프로그램 기본 정보

이름 AggrTrade AggrTrade
ID dachmjaingllkdmljlfhaphbflehijab
공식 URL https://chromewebstore.google.com/detail/aggrtrade/dachmjaingllkdmljlfhaphbflehijab
설명 Live cryptocurrency trades visualizer.
파일 크기 97.2 KB
설치 횟수 2,612
현재 버전 1.24
최근 업데이트 2022-05-06
출시 날짜 2021-04-13
평점 4.45/5 총 214 개의 평점
개발자 Aggr Trade
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://aggrtrade-extension.com/privacy.html
지원되는 언어 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"
    }
}