TradingView Watchlist Rotator

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

¿Qué es TradingView Watchlist Rotator?

TradingView Watchlist Rotator es una extensión de Chrome desarrollada por Lightning Fast Coder, y su función principal es "Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión TradingView Watchlist Rotator

Descarga archivos de extensión TradingView Watchlist Rotator en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre TradingView Watchlist Rotator TradingView Watchlist Rotator
ID oodmglmdhijlggmhghkcagfoceendlkc
URL Oficial https://chrome.google.com/webstore/detail/oodmglmdhijlggmhghkcagfoceendlkc
Descripción Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist
Tamaño del Archivo 46.28 KB
Cantidad de Instalaciones 531
Versión Actual 1.2.0
Última Actualización 2021-02-19
Fecha de Publicación 2020-02-26
Calificación 4.14/5 Total de 7 Calificaciones
Desarrollador Lightning Fast Coder
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Política de Privacidad https://gpzweb.com/privacy-policy
Idiomas Soportados 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"
        ]
    }
}