Reddit Stocks
Adds stock prices and percent change to posts on stock-related subreddits
Reddit Stocks là gì?
Reddit Stocks là một tiện ích mở rộng Chrome được phát triển bởi stuckinabootinc, và tính năng chính của nó là "Adds stock prices and percent change to posts on stock-related subreddits".
Ả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 Reddit Stocks
Tải xuống các tệp mở rộng Reddit Stocks 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
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Reddit Stocks |
ID | iopnmknglkghokbjkmokaljefoanpjba |
URL Chính Thức | https://chromewebstore.google.com/detail/reddit-stocks/iopnmknglkghokbjkmokaljefoanpjba |
Mô tả | Adds stock prices and percent change to posts on stock-related subreddits |
Kích Thước Tệp | 411 KB |
Số Lần Cài Đặt | 438 |
Phiên Bản Hiện Tại | 1.6 |
Cập Nhật Lần Cuối | 2021-02-02 |
Ngày Phát Hành | 2020-11-26 |
Đánh Giá | 4.88/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | stuckinabootinc |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |