TradingView Watchlist Rotator
Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist
Vad är TradingView Watchlist Rotator?
TradingView Watchlist Rotator är en Chrome-tillägg utvecklad av Lightning Fast Coder, och dess huvudfunktion är "Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist".
Tilläggsskärmbilder
Ladda ner TradingView Watchlist Rotator-förlängningens CRX-fil
Ladda ner TradingView Watchlist Rotator-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | |
ID | oodmglmdhijlggmhghkcagfoceendlkc |
Officiell webbadress | https://chrome.google.com/webstore/detail/oodmglmdhijlggmhghkcagfoceendlkc |
Beskrivning | Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist |
Filstorlek | 46.28 KB |
Antal Installationer | 531 |
Aktuell Version | 1.2.0 |
Senast Uppdaterad | 2021-02-19 |
Publiceringsdatum | 2020-02-26 |
Betyg | 4.14/5 Totalt 7 Betyg |
Utvecklare | Lightning Fast Coder |
E-post | [email protected] |
Betalningssätt | free |
URL till Sekretesspolicy Sidan | https://gpzweb.com/privacy-policy |
Stödda Språk | 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" ] } } |