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".
Снимки экрана расширения
Скачать файл 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
Основная информация о расширении
Название | |
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" ] } } |