TradingView Watchlist Rotator
Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist
Co je TradingView Watchlist Rotator?
TradingView Watchlist Rotator je rozšíření Chrome vyvinuté Lightning Fast Coder, a jeho hlavní funkcí je „Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření TradingView Watchlist Rotator
Stáhněte si soubory rozšíření TradingView Watchlist Rotator ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | |
ID | oodmglmdhijlggmhghkcagfoceendlkc |
Oficiální URL | https://chrome.google.com/webstore/detail/oodmglmdhijlggmhghkcagfoceendlkc |
Popis | Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist |
Velikost souboru | 46.28 KB |
Počet instalací | 531 |
Aktuální Verze | 1.2.0 |
Poslední Aktualizace | 2021-02-19 |
Datum Vydání | 2020-02-26 |
Hodnocení | 4.14/5 Celkem 7 Hodnocení |
Vývojář | Lightning Fast Coder |
[email protected] | |
Typ Platby | free |
URL Stránky Zásad Ochrany Soukromí | https://gpzweb.com/privacy-policy |
Podporované Jazyky | 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" ] } } |