Reddit Stocks

Adds stock prices and percent change to posts on stock-related subreddits

O que é Reddit Stocks?

Reddit Stocks é uma extensão do Chrome desenvolvida por stuckinabootinc, e sua principal característica é "Adds stock prices and percent change to posts on stock-related subreddits".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Reddit Stocks

Baixe arquivos de extensão Reddit Stocks no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Reddit Stocks Reddit Stocks
ID iopnmknglkghokbjkmokaljefoanpjba
URL Oficial https://chromewebstore.google.com/detail/reddit-stocks/iopnmknglkghokbjkmokaljefoanpjba
Descrição Adds stock prices and percent change to posts on stock-related subreddits
Tamanho do Arquivo 411 KB
Contagem de Instalações 438
Versão Atual 1.6
Última Atualização 2021-02-02
Data de Publicação 2020-11-26
Classificação 4.88/5 Total de 8 Avaliações
Desenvolvedor stuckinabootinc
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}