Stock Ticker Switcher

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

Was ist Stock Ticker Switcher?

Stock Ticker Switcher ist eine Chrome-Erweiterung, die von Brendan Doyle entwickelt wurde, und ihr Hauptmerkmal ist "Easily jump from a stock's page on Robinhood to the same ticker on Yahoo Finance, or vice-versa.".

Erweiterungsscreenshots

screenshot
screenshot

Stock Ticker Switcher-Erweiterungs-CRX-Datei herunterladen

Laden Sie Stock Ticker Switcher-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Stock Ticker Switcher Stock Ticker Switcher
ID abbhnhjpmfhiihejhdmebjmclichhefn
Offizielle URL https://chromewebstore.google.com/detail/stock-ticker-switcher/abbhnhjpmfhiihejhdmebjmclichhefn
Beschreibung Easily jump from a stock's page on Robinhood to the same ticker on Yahoo Finance, or vice-versa.
Dateigröße 34.6 MB
Installationsanzahl 21
Aktuelle Version 1.1.1
Letztes Update 2023-06-28
Veröffentlichungsdatum 2021-03-03
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler Brendan Doyle
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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\/*"
    ]
}