TradingView Watchlist Rotator

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

Was ist TradingView Watchlist Rotator?

TradingView Watchlist Rotator ist eine Chrome-Erweiterung, die von Lightning Fast Coder entwickelt wurde, und ihr Hauptmerkmal ist "Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist".

Erweiterungsscreenshots

screenshot

TradingView Watchlist Rotator-Erweiterungs-CRX-Datei herunterladen

Laden Sie TradingView Watchlist Rotator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name TradingView Watchlist Rotator TradingView Watchlist Rotator
ID oodmglmdhijlggmhghkcagfoceendlkc
Offizielle URL https://chrome.google.com/webstore/detail/oodmglmdhijlggmhghkcagfoceendlkc
Beschreibung Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist
Dateigröße 46.28 KB
Installationsanzahl 531
Aktuelle Version 1.2.0
Letztes Update 2021-02-19
Veröffentlichungsdatum 2020-02-26
Bewertung 4.14/5 Insgesamt 7 Bewertungen
Entwickler Lightning Fast Coder
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://gpzweb.com/privacy-policy
Unterstützte Sprachen 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"
        ]
    }
}