TradingView Scraper

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

什麼是TradingView Scraper?

TradingView Scraper是由The Better Traders開發的Chrome擴展程式,該擴展的主要功能是“TradingView backtesting data scrapper. Allows users to analyze the data generated from TradingView `strategy` scripts.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載TradingView Scraper擴展crx文件

下載TradingView Scraper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
隱私政策頁面URL 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'"
}