TradingView Watchlist Rotator
Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist
TradingView Watchlist Rotator là gì?
TradingView Watchlist Rotator là một tiện ích mở rộng Chrome được phát triển bởi Lightning Fast Coder, và tính năng chính của nó là "Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng TradingView Watchlist Rotator
Tải xuống các tệp mở rộng TradingView Watchlist Rotator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | oodmglmdhijlggmhghkcagfoceendlkc |
URL Chính Thức | https://chrome.google.com/webstore/detail/oodmglmdhijlggmhghkcagfoceendlkc |
Mô tả | Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist |
Kích Thước Tệp | 46.28 KB |
Số Lần Cài Đặt | 531 |
Phiên Bản Hiện Tại | 1.2.0 |
Cập Nhật Lần Cuối | 2021-02-19 |
Ngày Phát Hành | 2020-02-26 |
Đánh Giá | 4.14/5 Tổng số 7 Đánh Giá |
Nhà Phát Triển | Lightning Fast Coder |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://gpzweb.com/privacy-policy |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } } |