Robinhood Realized Earnings & CSV File Export

Get Year-To-Date Earnings from your Stock & Crypto on Robinhood. Export Robinhood Stock & Crypto transactions to CSV file.

O que é Robinhood Realized Earnings & CSV File Export?

Robinhood Realized Earnings & CSV File Export é uma extensão do Chrome desenvolvida por MadeByMad, e sua principal característica é "Get Year-To-Date Earnings from your Stock & Crypto on Robinhood. Export Robinhood Stock & Crypto transactions to CSV file.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Robinhood Realized Earnings & CSV File Export

Baixe arquivos de extensão Robinhood Realized Earnings & CSV File Export no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        🔥  One dashboard for all your Robinhood stock/options/crypto data 🔥

👉 Get the Year-To-Date (YTD) realized gains from your Robinhood Stocks and Cryptocurrency buy/sell activity
👉 Stock splits are factored in while calculating realized gains
👉 Get the total amount paid as Dividends from stocks you hold
👉 Quickly search through your Stocks, Cryptocurrency, Options buy/sell history
👉 Download your stocks buy/sell history as a CSV (Excel) file
👉 Download your crypto buy/sell history as a CSV (Excel) file
👉 Download your options open/close history as a CSV (Excel) file

Currently Unsupported -
⏰ Wash Sale
⏰ Options realized earnings

Note -
✍🏼 The earnings displayed in the popup are *realized earnings*. Which means if you haven't sold any stocks for the year 2022, the popup won't display it. That's not a bug :)

✍🏼 For importing cryptocurrency transactions to TurboTax or Koinly, please use the official Robinhood Crypto 1099 CSV file available at the end of the year in your Robinhood Account Statements

✍🏼 This extension is not affiliated to Robinhood Markets, Inc or it's Subsidiaries. Robinhood is a trademark of Robinhood Markets, Inc.

✍🏼 The goal of this Chrome extension is to provide a general guideline and it is likely that the data displayed by this extension may be incorrect due to calculation errors and/or variety of other reasons beyond our control. Thus, please do not directly use the data obtained through this extension to make any financial decisions. Double check the calculations manually by looking at your monthly account statements provided by Robinhood.com.

By Installing this extension, you agree to the below license agreement.
===============================
LICENSE
===============================
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sub license, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                    

Informações Básicas da Extensão

Nome Robinhood Realized Earnings & CSV File Export Robinhood Realized Earnings & CSV File Export
ID ncaoppocpbjejagcggeildfndfbdfaof
URL Oficial https://chromewebstore.google.com/detail/robinhood-realized-earnin/ncaoppocpbjejagcggeildfndfbdfaof
Descrição Get Year-To-Date Earnings from your Stock & Crypto on Robinhood. Export Robinhood Stock & Crypto transactions to CSV file.
Tamanho do Arquivo 849 KB
Contagem de Instalações 4,728
Versão Atual 1.15
Última Atualização 2024-02-13
Data de Publicação 2019-12-30
Classificação 4.02/5 Total de 41 Avaliações
Desenvolvedor MadeByMad
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://madebymad.com/
URL da Página de Ajuda https://madebymad.com/support
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Robinhood Realized Earnings & CSV File Export",
    "short_name": "RobinhoodYTD",
    "version": "1.15",
    "description": "Get Year-To-Date Earnings from your Stock & Crypto on Robinhood. Export Robinhood Stock & Crypto transactions to CSV file.",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage",
        "unlimitedStorage",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/*.robinhood.com\/*"
    ],
    "background": {
        "service_worker": ".\/js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/robinhood.com\/*"
            ],
            "js": [
                ".\/js\/content_script.js"
            ]
        }
    ],
    "action": {
        "title": "Robinhood YTD",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "img\/icon16.png",
            "32": "img\/icon32.png",
            "48": "img\/icon48.png",
            "128": "img\/icon128.png"
        }
    },
    "icons": {
        "16": "img\/icon16.png",
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "manifest_version": 3
}