TradingView Watchlist Rotator

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

Co to jest TradingView Watchlist Rotator?

TradingView Watchlist Rotator to rozszerzenie Chrome opracowane przez Lightning Fast Coder, a jego główną funkcją jest „Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia TradingView Watchlist Rotator

Pobierz pliki rozszerzeń TradingView Watchlist Rotator w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa TradingView Watchlist Rotator TradingView Watchlist Rotator
ID oodmglmdhijlggmhghkcagfoceendlkc
Oficjalny URL https://chrome.google.com/webstore/detail/oodmglmdhijlggmhghkcagfoceendlkc
Opis Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist
Rozmiar pliku 46.28 KB
Liczba instalacji 531
Aktualna Wersja 1.2.0
Ostatnia Aktualizacja 2021-02-19
Data Publikacji 2020-02-26
Ocena 4.14/5 Łącznie 7 Oceny
Deweloper Lightning Fast Coder
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://gpzweb.com/privacy-policy
Obsługiwane Języki 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"
        ]
    }
}