TradingView Watchlist Rotator

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

What is TradingView Watchlist Rotator?

TradingView Watchlist Rotator is a Chrome extension developed by Lightning Fast Coder, and its main feature is "Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist".

Extension Screenshots

screenshot

Download TradingView Watchlist Rotator Extension CRX File

Download TradingView Watchlist Rotator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name TradingView Watchlist Rotator TradingView Watchlist Rotator
ID oodmglmdhijlggmhghkcagfoceendlkc
Official URL https://chrome.google.com/webstore/detail/oodmglmdhijlggmhghkcagfoceendlkc
Description Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist
File Size 46.28 KB
Installation Count 531
Current Version 1.2.0
Last Updated 2021-02-19
Publish Date 2020-02-26
Rating 4.14/5 Total 7 Ratings
Developer Lightning Fast Coder
Email [email protected]
Payment Type free
Privacy Policy Page URL https://gpzweb.com/privacy-policy
Supported Languages 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"
        ]
    }
}