TradingView Watchlist Rotator
Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist
Apa itu TradingView Watchlist Rotator?
TradingView Watchlist Rotator adalah ekstensi Chrome yang dikembangkan oleh Lightning Fast Coder, dan fitur utamanya adalah "Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi TradingView Watchlist Rotator
Unduh file ekstensi TradingView Watchlist Rotator dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | |
ID | oodmglmdhijlggmhghkcagfoceendlkc |
URL Resmi | https://chrome.google.com/webstore/detail/oodmglmdhijlggmhghkcagfoceendlkc |
Deskripsi | Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist |
Ukuran File | 46.28 KB |
Jumlah Instalasi | 531 |
Versi Saat Ini | 1.2.0 |
Terakhir Diperbarui | 2021-02-19 |
Tanggal Publikasi | 2020-02-26 |
Penilaian | 4.14/5 Total 7 Penilaian |
Pengembang | Lightning Fast Coder |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Kebijakan Privasi | https://gpzweb.com/privacy-policy |
Bahasa yang Didukung | 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" ] } } |