Robinhood Helper

When using a Finviz screener, this extension will open all tickers in Robinhood in new tabs. More features to come!

O que é Robinhood Helper?

Robinhood Helper é uma extensão do Chrome desenvolvida por kyle.challis, e sua principal característica é "When using a Finviz screener, this extension will open all tickers in Robinhood in new tabs. More features to come!".

Baixar o arquivo CRX da Extensão Robinhood Helper

Baixe arquivos de extensão Robinhood Helper 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 using a Finviz screener, this extension will open all tickers in Robinhood in new tabs.

More features to come!                    

Informações Básicas da Extensão

Nome Robinhood Helper Robinhood Helper
ID jigjoibbpjlnijbaabodmklhegpkkojc
URL Oficial https://chrome.google.com/webstore/detail/robinhood-helper/jigjoibbpjlnijbaabodmklhegpkkojc
Descrição When using a Finviz screener, this extension will open all tickers in Robinhood in new tabs. More features to come!
Tamanho do Arquivo 34.62 KB
Contagem de Instalações 37
Versão Atual 1.0
Última Atualização 2018-05-10
Data de Publicação 2018-05-10
Desenvolvedor kyle.challis
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Robinhood Helper",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.finviz.com\/*"
            ],
            "js": [
                "jquery-2.2.4.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Robinhood Helper",
        "commented": {
            "default_icon": "icon.png",
            "default_popup": "popup.html"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}