Reddit Stocks
Adds stock prices and percent change to posts on stock-related subreddits
Cos'è Reddit Stocks?
Reddit Stocks è un'estensione di Chrome sviluppata da stuckinabootinc, e la sua funzione principale è "Adds stock prices and percent change to posts on stock-related subreddits".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Reddit Stocks
Scarica i file di estensione Reddit Stocks in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Reddit Stocks |
ID | iopnmknglkghokbjkmokaljefoanpjba |
URL Ufficiale | https://chromewebstore.google.com/detail/reddit-stocks/iopnmknglkghokbjkmokaljefoanpjba |
Descrizione | Adds stock prices and percent change to posts on stock-related subreddits |
Dimensione del File | 411 KB |
Conteggio Installazioni | 438 |
Versione Corrente | 1.6 |
Ultimo Aggiornamento | 2021-02-02 |
Data di Pubblicazione | 2020-11-26 |
Valutazione | 4.88/5 Totale 8 Valutazioni |
Sviluppatore | stuckinabootinc |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |