TradingView Watchlist Rotator
Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist
Hvad er TradingView Watchlist Rotator?
TradingView Watchlist Rotator er en Chrome-udvidelse udviklet af Lightning Fast Coder, og dens hovedfunktion er "Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist".
Udvidelsesskærmbilleder
Download TradingView Watchlist Rotator-udvidelses-CRX-fil
Download TradingView Watchlist Rotator-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | |
ID | oodmglmdhijlggmhghkcagfoceendlkc |
Officiel URL | https://chrome.google.com/webstore/detail/oodmglmdhijlggmhghkcagfoceendlkc |
Beskrivelse | Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist |
Filstørrelse | 46.28 KB |
Antal Installationer | 531 |
Nuværende Version | 1.2.0 |
Senest Opdateret | 2021-02-19 |
Udgivelsesdato | 2020-02-26 |
Bedømmelse | 4.14/5 Samlet 7 Bedømmelser |
Udvikler | Lightning Fast Coder |
[email protected] | |
Betalingsmetode | free |
URL til Fortrolighedspolitik Side | https://gpzweb.com/privacy-policy |
Understøttede Sprog | 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" ] } } |