TradingView Watchlist Rotator
Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist
什麼是TradingView Watchlist Rotator?
TradingView Watchlist Rotator是由Lightning Fast Coder開發的Chrome擴展程式,該擴展的主要功能是“Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist”。
擴展截圖
下載TradingView Watchlist Rotator擴展crx文件
下載TradingView Watchlist Rotator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | |
ID | oodmglmdhijlggmhghkcagfoceendlkc |
官方網址 | https://chrome.google.com/webstore/detail/oodmglmdhijlggmhghkcagfoceendlkc |
簡介 | Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist |
檔案大小 | 46.28 KB |
安裝次數 | 531 |
目前版本 | 1.2.0 |
更新時間 | 2021-02-19 |
上架時間 | 2020-02-26 |
評分 | 4.14/5 共 7 次評分 |
開發者 | Lightning Fast Coder |
電子郵箱 | [email protected] |
付費類型 | free |
隱私政策頁面URL | https://gpzweb.com/privacy-policy |
支援的語言 | 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" ] } } |