Stock Ticker Switcher

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

Что такое Stock Ticker Switcher?

Stock Ticker Switcher - это расширение Chrome, разработанное Brendan Doyle, и его основная функция - "Easily jump from a stock's page on Robinhood to the same ticker on Yahoo Finance, or vice-versa.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Stock Ticker Switcher

Скачайте файлы расширений Stock Ticker Switcher в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Stock Ticker Switcher Stock Ticker Switcher
ID abbhnhjpmfhiihejhdmebjmclichhefn
Официальный URL https://chromewebstore.google.com/detail/stock-ticker-switcher/abbhnhjpmfhiihejhdmebjmclichhefn
Описание Easily jump from a stock's page on Robinhood to the same ticker on Yahoo Finance, or vice-versa.
Размер файла 34.6 MB
Количество установок 21
Текущая Версия 1.1.1
Последнее Обновление 2023-06-28
Дата публикации 2021-03-03
Рейтинг 3.00/5 Всего 2 оценок
Разработчик Brendan Doyle
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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\/*"
    ]
}