Reddit Stocks
Adds stock prices and percent change to posts on stock-related subreddits
Reddit Stocks क्या है?
Reddit Stocks stuckinabootinc द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds stock prices and percent change to posts on stock-related subreddits"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Reddit Stocks एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } |