Robinhood Helper

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

Cos'è Robinhood Helper?

Robinhood Helper è un'estensione di Chrome sviluppata da kyle.challis, e la sua funzione principale è "When using a Finviz screener, this extension will open all tickers in Robinhood in new tabs. More features to come!".

Scarica il file CRX dell'estensione Robinhood Helper

Scarica i file di estensione Robinhood Helper 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 using a Finviz screener, this extension will open all tickers in Robinhood in new tabs.

More features to come!                    

Informazioni di Base sull'Estensione

Nome Robinhood Helper Robinhood Helper
ID jigjoibbpjlnijbaabodmklhegpkkojc
URL Ufficiale https://chrome.google.com/webstore/detail/robinhood-helper/jigjoibbpjlnijbaabodmklhegpkkojc
Descrizione When using a Finviz screener, this extension will open all tickers in Robinhood in new tabs. More features to come!
Dimensione del File 34.62 KB
Conteggio Installazioni 37
Versione Corrente 1.0
Ultimo Aggiornamento 2018-05-10
Data di Pubblicazione 2018-05-10
Sviluppatore kyle.challis
Tipo di Pagamento free
Lingue Supportate 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"
        ]
    }
}