AggrTrade

Live cryptocurrency trades visualizer.

Cos'è AggrTrade?

AggrTrade è un'estensione di Chrome sviluppata da Aggr Trade, e la sua funzione principale è "Live cryptocurrency trades visualizer.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione AggrTrade

Scarica i file di estensione AggrTrade in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome AggrTrade AggrTrade
ID dachmjaingllkdmljlfhaphbflehijab
URL Ufficiale https://chromewebstore.google.com/detail/aggrtrade/dachmjaingllkdmljlfhaphbflehijab
Descrizione Live cryptocurrency trades visualizer.
Dimensione del File 97.2 KB
Conteggio Installazioni 2,612
Versione Corrente 1.24
Ultimo Aggiornamento 2022-05-06
Data di Pubblicazione 2021-04-13
Valutazione 4.45/5 Totale 214 Valutazioni
Sviluppatore Aggr Trade
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://aggrtrade-extension.com/privacy.html
Lingue Supportate 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"
    }
}