Stock Hover
View candlestick charts without leaving Twitter.
什么是Stock Hover?
Stock Hover是由Norman Wang开发的Chrome扩展程序,该扩展的主要功能是“View candlestick charts without leaving Twitter.”。
扩展截图
下载Stock Hover扩展crx文件
下载Stock Hover扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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\/*" ] } ] } |