AggrTrade

Live cryptocurrency trades visualizer.

O que é AggrTrade?

AggrTrade é uma extensão do Chrome desenvolvida por Aggr Trade, e sua principal característica é "Live cryptocurrency trades visualizer.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão AggrTrade

Baixe arquivos de extensão AggrTrade no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome AggrTrade AggrTrade
ID dachmjaingllkdmljlfhaphbflehijab
URL Oficial https://chromewebstore.google.com/detail/aggrtrade/dachmjaingllkdmljlfhaphbflehijab
Descrição Live cryptocurrency trades visualizer.
Tamanho do Arquivo 97.2 KB
Contagem de Instalações 2,612
Versão Atual 1.24
Última Atualização 2022-05-06
Data de Publicação 2021-04-13
Classificação 4.45/5 Total de 214 Avaliações
Desenvolvedor Aggr Trade
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://aggrtrade-extension.com/privacy.html
Idiomas Suportados 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"
    }
}