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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة سياسة الخصوصية 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"
        ]
    }
}