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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Lightning Fast Coder และคุณลักษณะหลักของมันคือ "Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TradingView Watchlist Rotator
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
URL อย่างเป็นทางการ | 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" ] } } |