Stock Ticker Switcher

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

Co to jest Stock Ticker Switcher?

Stock Ticker Switcher to rozszerzenie Chrome opracowane przez Brendan Doyle, a jego główną funkcją jest „Easily jump from a stock's page on Robinhood to the same ticker on Yahoo Finance, or vice-versa.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Stock Ticker Switcher

Pobierz pliki rozszerzeń Stock Ticker Switcher w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Stock Ticker Switcher Stock Ticker Switcher
ID abbhnhjpmfhiihejhdmebjmclichhefn
Oficjalny URL https://chromewebstore.google.com/detail/stock-ticker-switcher/abbhnhjpmfhiihejhdmebjmclichhefn
Opis Easily jump from a stock's page on Robinhood to the same ticker on Yahoo Finance, or vice-versa.
Rozmiar pliku 34.6 MB
Liczba instalacji 21
Aktualna Wersja 1.1.1
Ostatnia Aktualizacja 2023-06-28
Data Publikacji 2021-03-03
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper Brendan Doyle
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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\/*"
    ]
}