Stock Ticker Switcher

Easily jump from a stock's page on Robinhood to the same ticker on Yahoo Finance, or vice-versa.

¿Qué es Stock Ticker Switcher?

Stock Ticker Switcher es una extensión de Chrome desarrollada por Brendan Doyle, y su función principal es "Easily jump from a stock's page on Robinhood to the same ticker on Yahoo Finance, or vice-versa.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Stock Ticker Switcher

Descarga archivos de extensión Stock Ticker Switcher en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        While on the stock page for a specific company or cryptocurrency on Robinhood, this extension acts as a quick link to that ticker's Yahoo Finance page, giving you quick and easy access to additional information. This can now also work in reverse, taking you from Yahoo Finance back to Robinhood. 
If you’re on one of these websites, but not on the page for one specific company, the extension will instead just send you to the homepage of the other site. 


Planned Features/Improvements in the Future:

- Give users the option to select their native currency, so that you’ll be brought to the most relevant page for a cryptocurrency on Yahoo Finance when switching. As an example, if you switch from the Robinhood page for Bitcoin (https://robinhood.com/crypto/BTC) it will always bring you to the USD version of that page (https://finance.yahoo.com/quote/BTC-USD). We want to give users who do not use USD as their native fiat currency to have the option to send themselves to their preferred page, such as https://finance.yahoo.com/quote/BTC-CAD for Canadians, for example. 

- Add better handling for tickers which are available on one site, but not the other. For example – at the time of this writing, Trulieve Cannabis Corp (TCNNF) has its own page on Yahoo Finance (https://finance.yahoo.com/quote/TCNNF), but is not available on Robinhood at all, so using the extension to switch to Robinhood will result in a 404 page. We want to implement some cleaner way of handling this: possibly by sending the user straight to the other website’s homepage, and using an alert to explain why this happened. Exact solution TBD. 

- Building off of the previous point, we’d like to add some method of collecting data in instances where the extension fails to switch the user to their desired page. For example, having the extension send us the url of any failed attempts to open a particular page would be very helpful. In the meantime, if you encounter any pages which do not allow you to switch between these two sites as you would expect to, we’d greatly appreciate it if you could send an email with the url that you tried to use the extension on to [email protected]. This may never be 100% perfect (as we’re kind of at the whim of whatever unusual choices Robinhood and Yahoo Finance might decide to make with their page and url structure), but we do want this extension to work as consistently as possible, so if there are any instances where it’s failing, we’d really like to know! 

- We want to expand the extension to work with other finance websites. Obviously, not everyone uses Robinhood, and not everyone uses Yahoo Finance. We’d like to get the extension working on as many finance websites as possible, and give users the ability to customize which sites they can switch between. Again, if there are any particular websites (or additional features) that you’d like to see us add, please send an email to [email protected] to let us know! Some of the top sites on our to-do list include: 
--- Seeking Alpha
--- Google Finance
--- TradingView                    

Información Básica de la Extensión

Nombre Stock Ticker Switcher Stock Ticker Switcher
ID abbhnhjpmfhiihejhdmebjmclichhefn
URL Oficial https://chromewebstore.google.com/detail/stock-ticker-switcher/abbhnhjpmfhiihejhdmebjmclichhefn
Descripción Easily jump from a stock's page on Robinhood to the same ticker on Yahoo Finance, or vice-versa.
Tamaño del Archivo 34.6 MB
Cantidad de Instalaciones 21
Versión Actual 1.1.1
Última Actualización 2023-06-28
Fecha de Publicación 2021-03-03
Calificación 3.00/5 Total de 2 Calificaciones
Desarrollador Brendan Doyle
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Stock Ticker Switcher",
    "description": "Easily jump from a stock's page on Robinhood to the same ticker on Yahoo Finance, or vice-versa.",
    "version": "1.1.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/robinhood.com\/*",
                "https:\/\/finance.yahoo.com\/*"
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "dist\/contentScript.js",
                "dist\/Robinhood.js",
                "dist\/YahooFinance.js"
            ]
        }
    ],
    "background": {
        "service_worker": "dist\/serviceWorker.js"
    },
    "action": {
        "default_icon": "stsIcon128.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/robinhood.com\/*",
        "https:\/\/finance.yahoo.com\/*"
    ]
}