TradingView Watchlist Rotator

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

Qu'est-ce que TradingView Watchlist Rotator ?

TradingView Watchlist Rotator est une extension Chrome développée par Lightning Fast Coder, et sa fonction principale est "Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension TradingView Watchlist Rotator

Téléchargez les fichiers d'extension TradingView Watchlist Rotator au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom TradingView Watchlist Rotator TradingView Watchlist Rotator
ID oodmglmdhijlggmhghkcagfoceendlkc
URL Officiel https://chrome.google.com/webstore/detail/oodmglmdhijlggmhghkcagfoceendlkc
Description Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist
Taille du Fichier 46.28 KB
Nombre d'Installations 531
Version Actuelle 1.2.0
Dernière Mise à Jour 2021-02-19
Date de Publication 2020-02-26
Évaluation 4.14/5 Total 7 Évaluations
Développeur Lightning Fast Coder
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://gpzweb.com/privacy-policy
Langues Prises en Charge 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"
        ]
    }
}