TradingView Watchlist Rotator

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

Τι είναι το TradingView Watchlist Rotator;

Το TradingView Watchlist Rotator είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Lightning Fast Coder, και η κύρια λειτουργία του είναι "Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης TradingView Watchlist Rotator

Λήψη αρχείων επέκτασης TradingView Watchlist Rotator σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα TradingView Watchlist Rotator TradingView Watchlist Rotator
ID oodmglmdhijlggmhghkcagfoceendlkc
Επίσημο URL https://chrome.google.com/webstore/detail/oodmglmdhijlggmhghkcagfoceendlkc
Περιγραφή Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist
Μέγεθος Αρχείου 46.28 KB
Αριθμός Εγκαταστάσεων 531
Τρέχουσα Έκδοση 1.2.0
Τελευταία Ενημέρωση 2021-02-19
Ημερομηνία Δημοσίευσης 2020-02-26
Αξιολόγηση 4.14/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής Lightning Fast Coder
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://gpzweb.com/privacy-policy
Υποστηριζόμενες Γλώσσες 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"
        ]
    }
}