Stock Hover
View candlestick charts without leaving Twitter.
Stock Hover क्या है?
Stock Hover Norman Wang द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "View candlestick charts without leaving Twitter."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Stock Hover एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Displays candlestick charts when you hover over $ stock/crypto tags on Twitter. Catch up with the hottest stock and crypto price movements quickly and easily. Features: - Hover Over $ Tickers on Twitter and View Charts Without Leaving Twitter. - Create and Add Tickers to Watchlist with a Press of a Button. - Switch and View Charts Between Multiple Time Frames. - Customize Charts by Adding Indicators.
एक्सटेंशन की मूल जानकारी
नाम | Stock Hover |
ID | bnmmdnmoejecmdjbidpefhlbophdkkkl |
आधिकारिक URL | https://chromewebstore.google.com/detail/stock-hover/bnmmdnmoejecmdjbidpefhlbophdkkkl |
विवरण | View candlestick charts without leaving Twitter. |
फ़ाइल का आकार | 157 KB |
स्थापना संख्या | 1,772 |
वर्तमान संस्करण | 1.1.2 |
अंतिम अपडेट | 2022-05-26 |
प्रकाशन तिथि | 2022-04-18 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | Norman Wang |
ईमेल | [email protected] |
भुगतान के प्रकार | in_app |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Stock Hover", "version": "1.1.2", "description": "View candlestick charts without leaving Twitter.", "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*", "https:\/\/tweetdeck.twitter.com\/*", "https:\/\/extensionpay.com\/*" ], "js": [ "content\/import-index.js", "content\/import-tv.js", "import-ExtPayContent.js" ], "css": [ "popup.css" ], "run_at": "document_start", "all_frames": true } ], "permissions": [ "storage" ], "action": { "default_popup": "pages\/popup\/index.html" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "web_accessible_resources": [ { "resources": [ "chunks\/*-*.js", "content\/index.js", "content\/tv.js", "ExtPayContent.js" ], "matches": [ "https:\/\/twitter.com\/*", "https:\/\/tweetdeck.twitter.com\/*", "https:\/\/extensionpay.com\/*" ] } ] } |