TradingView Watchlist Rotator

Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist

TradingView Watchlist Rotatorとは何ですか?

TradingView Watchlist RotatorはLightning Fast Coderによって開発されたChromeの拡張機能で、その主な機能は「Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist」です。

拡張機能のスクリーンショット

screenshot

TradingView Watchlist Rotator拡張機能のCRXファイルをダウンロード

TradingView Watchlist Rotator拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Create slideshow of stocks in your tradingview watchlist in a tab with custom duration to display each chart. 
You can also select in which layout these charts should be shown. 
Easy to use as it requires only 3 clicks
Watch the video for demo                    

拡張機能の基本情報

名前 TradingView Watchlist Rotator TradingView Watchlist Rotator
ID oodmglmdhijlggmhghkcagfoceendlkc
公式URL https://chrome.google.com/webstore/detail/oodmglmdhijlggmhghkcagfoceendlkc
説明 Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist
ファイルサイズ 46.28 KB
インストール数 531
現在のバージョン 1.2.0
最終更新日 2021-02-19
公開日 2020-02-26
評価 4.14/5 合計 7 レビュー
開発者 Lightning Fast Coder
Eメール [email protected]
支払い方法 free
プライバシーポリシーページのURL https://gpzweb.com/privacy-policy
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TradingView Watchlist Rotator",
    "description": "Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist",
    "version": "1.2.0",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "https:\/\/*.tradingview.com\/*"
    ],
    "browser_action": {
        "default_icon": "icon2.png",
        "default_popup": "\/html\/popup.html"
    },
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "\/js\/jquery-2.1.4.min.js",
                "\/js\/script.js"
            ],
            "run_at": "document_start",
            "matches": [
                "https:\/\/*.tradingview.com\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "\/js\/jquery-2.1.4.min.js",
            "\/js\/bg.js"
        ]
    }
}