TradingView Scraper

TradingView backtesting data scrapper. Allows users to analyze the data generated from TradingView `strategy` scripts.

ما هو TradingView Scraper؟

TradingView Scraper هو إضافة Chrome تم تطويرها بواسطة The Better Traders، والميزة الرئيسية لها هي "TradingView backtesting data scrapper. Allows users to analyze the data generated from TradingView `strategy` scripts.".

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

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة TradingView Scraper

قم بتنزيل ملفات الامتداد TradingView Scraper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        This extension allows you to export the list of trades visible on TradingView's back testing results for indicator strategies, allowing you access to more data for further analysis. Please note that this extension requires an active TBO Pro subscription in order to use.

-The Better Traders does not own or claim to own any information found on the TradingView website.                    

معلومات أساسية عن التمديد

الاسم TradingView Scraper TradingView Scraper
ID lomjhlceghbieaipilkjbeocalekkhhl
عنوان URL الرسمي https://chromewebstore.google.com/detail/tradingview-scraper/lomjhlceghbieaipilkjbeocalekkhhl
الوصف TradingView backtesting data scrapper. Allows users to analyze the data generated from TradingView `strategy` scripts.
حجم الملف 921 KB
عدد التثبيتات 546
النسخة الحالية 1.1.1
آخر تحديث 2022-06-07
تاريخ النشر 2021-08-07
تقييم 1.00/5 مجموع تقييمات 1
المطور The Better Traders
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://www.thebettertraders.com
عنوان صفحة سياسة الخصوصية https://www.thebettertraders.com/privacy-policy
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TradingView Scraper",
    "description": "TradingView backtesting data scrapper. Allows users to analyze the data generated from TradingView `strategy` scripts.",
    "version": "1.1.1",
    "permissions": [
        "activeTab",
        "storage",
        "*:\/\/*.tradingview.com\/*",
        "*:\/\/hook.integromat.com\/"
    ],
    "browser_action": {
        "default_title": "TradingView Scraper",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.tradingview.com\/chart\/*"
            ],
            "js": [
                "content.bundle.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "background.bundle.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "128": "128.png"
    },
    "web_accessible_resources": [
        "*"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'"
}