Stock Hover
View candlestick charts without leaving Twitter.
Stock Hover là gì?
Stock Hover là một tiện ích mở rộng Chrome được phát triển bởi Norman Wang, và tính năng chính của nó là "View candlestick charts without leaving Twitter.".
Ả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 Stock Hover
Tải xuống các tệp mở rộng Stock Hover 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
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Stock Hover |
ID | bnmmdnmoejecmdjbidpefhlbophdkkkl |
URL Chính Thức | https://chromewebstore.google.com/detail/stock-hover/bnmmdnmoejecmdjbidpefhlbophdkkkl |
Mô tả | View candlestick charts without leaving Twitter. |
Kích Thước Tệp | 157 KB |
Số Lần Cài Đặt | 1,772 |
Phiên Bản Hiện Tại | 1.1.2 |
Cập Nhật Lần Cuối | 2022-05-26 |
Ngày Phát Hành | 2022-04-18 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Norman Wang |
[email protected] | |
Loại Thanh Toán | in_app |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |