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 |
Eメール | [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" ] } |