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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में TradingView Watchlist Rotator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } } |