Reddit Stocks
Adds stock prices and percent change to posts on stock-related subreddits
什么是Reddit Stocks?
Reddit Stocks是由stuckinabootinc开发的Chrome扩展程序,该扩展的主要功能是“Adds stock prices and percent change to posts on stock-related subreddits”。
扩展截图
下载Reddit Stocks扩展crx文件
下载Reddit Stocks扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
When you're browsing stock-related pages on Reddit, you may find yourself jumping back and forth to check stock prices. With Reddit Stocks, you'll see stock prices and percent change from the previous day for the stocks in each of the posts on the page. If you ctrl-click on the stock price, you'll be taken to the Yahoo Finance page for the stock. Stock information will show in posts for each of these subreddits: /r/options /r/stocks /r/investing /r/thetagang /r/wallstreetbets Reddit Stocks is open-source on GitHub. If you'd like to contribute to the code, check it out here: https://github.com/stuckinaboot/reddit_stocks_chrome
扩展基本信息
名称 | Reddit Stocks |
ID | iopnmknglkghokbjkmokaljefoanpjba |
官方URL | https://chromewebstore.google.com/detail/reddit-stocks/iopnmknglkghokbjkmokaljefoanpjba |
简介 | Adds stock prices and percent change to posts on stock-related subreddits |
文件大小 | 411 KB |
安装次数 | 438 |
当前版本 | 1.6 |
更新时间 | 2021-02-02 |
上架时间 | 2020-11-26 |
评分 | 4.88/5 共8次评分 |
开发者 | stuckinabootinc |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Reddit Stocks", "version": "1.6", "description": "Adds stock prices and percent change to posts on stock-related subreddits", "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/www.reddit.com\/", "https:\/\/www.reddit.com\/r\/options*", "https:\/\/www.reddit.com\/r\/stocks*", "https:\/\/www.reddit.com\/r\/investing*", "https:\/\/www.reddit.com\/r\/thetagang*", "https:\/\/www.reddit.com\/r\/wallstreetbets*", "https:\/\/www.reddit.com\/r\/pennystocks*" ], "js": [ "content-script.js" ], "css": [ "styles.css" ] } ], "icons": { "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "permissions": [ "https:\/\/query1.finance.yahoo.com\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "web_accessible_resources": [ "styles.css" ] } |