Stock Extension

Shows stock information as a browser action

O que é Stock Extension?

Stock Extension é uma extensão do Chrome desenvolvida por jamessitto, e sua principal característica é "Shows stock information as a browser action".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Stock Extension

Baixe arquivos de extensão Stock Extension 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

                        Stock Tracker Extension by nwoodthorpe
Chrome extension that shows favourite stocks in a chrome extension icon. Select your favourite stocks and the extension will cycle between them every few seconds showing the current price. +/- is indicated by the text color.

This extension uses the Yahoo Finance API for pulling stock information. Find the ticker name Yahoo Finance uses, which may be prefixed by the exchange. E.g. NYSE:SHOP                    

Informações Básicas da Extensão

Nome Stock Extension Stock Extension
ID dnnjkhphmdlpldfbcmkkklhldgjhdhif
URL Oficial https://chromewebstore.google.com/detail/stock-extension/dnnjkhphmdlpldfbcmkkklhldgjhdhif
Descrição Shows stock information as a browser action
Tamanho do Arquivo 22.49 KB
Contagem de Instalações 178
Versão Atual 1.0.0
Última Atualização 2018-10-02
Data de Publicação 2018-10-02
Classificação 1.00/5 Total de 2 Avaliações
Desenvolvedor jamessitto
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stock Extension",
    "version": "1.0.0",
    "description": "Shows stock information as a browser action",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon.png"
    },
    "permissions": [
        "http:\/\/*\/",
        "storage"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    }
}