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
电子邮箱 [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"
        ]
    }
}