TradingView Watchlist Rotator
Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist
O que é TradingView Watchlist Rotator?
TradingView Watchlist Rotator é uma extensão do Chrome desenvolvida por Lightning Fast Coder, e sua principal característica é "Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão TradingView Watchlist Rotator
Baixe arquivos de extensão TradingView Watchlist Rotator no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | |
ID | oodmglmdhijlggmhghkcagfoceendlkc |
URL Oficial | https://chrome.google.com/webstore/detail/oodmglmdhijlggmhghkcagfoceendlkc |
Descrição | Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist |
Tamanho do Arquivo | 46.28 KB |
Contagem de Instalações | 531 |
Versão Atual | 1.2.0 |
Última Atualização | 2021-02-19 |
Data de Publicação | 2020-02-26 |
Classificação | 4.14/5 Total de 7 Avaliações |
Desenvolvedor | Lightning Fast Coder |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | https://gpzweb.com/privacy-policy |
Idiomas Suportados | 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" ] } } |