TradingView Watchlist Rotator

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

Wat is TradingView Watchlist Rotator?

TradingView Watchlist Rotator is een Chrome-extensie ontwikkeld door Lightning Fast Coder, en de belangrijkste functie is "Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie TradingView Watchlist Rotator

Download TradingView Watchlist Rotator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam TradingView Watchlist Rotator TradingView Watchlist Rotator
ID oodmglmdhijlggmhghkcagfoceendlkc
Officiële URL https://chrome.google.com/webstore/detail/oodmglmdhijlggmhghkcagfoceendlkc
Beschrijving Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist
Bestandsgrootte 46.28 KB
Aantal Installaties 531
Huidige Versie 1.2.0
Laatst Bijgewerkt 2021-02-19
Publicatiedatum 2020-02-26
Beoordeling 4.14/5 Totaal 7 Beoordelingen
Ontwikkelaar Lightning Fast Coder
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://gpzweb.com/privacy-policy
Ondersteunde Talen 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"
        ]
    }
}