AggrTrade

Live cryptocurrency trades visualizer.

ما هو AggrTrade؟

AggrTrade هو إضافة Chrome تم تطويرها بواسطة Aggr Trade، والميزة الرئيسية لها هي "Live cryptocurrency trades visualizer.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة AggrTrade

قم بتنزيل ملفات الامتداد AggrTrade بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة سياسة الخصوصية 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"
    }
}