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.
什麼是Robinhood Realized Earnings & CSV File Export?
Robinhood Realized Earnings & CSV File Export是由MadeByMad開發的Chrome擴展程式,該擴展的主要功能是“Get Year-To-Date Earnings from your Stock & Crypto on Robinhood. Export Robinhood Stock & Crypto transactions to CSV file.”。
擴展截圖
下載Robinhood Realized Earnings & CSV File Export擴展crx文件
下載Robinhood Realized Earnings & CSV File Export擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
🔥 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.
擴展基本資訊
名稱 | Robinhood Realized Earnings & CSV File Export |
ID | ncaoppocpbjejagcggeildfndfbdfaof |
官方網址 | https://chromewebstore.google.com/detail/robinhood-realized-earnin/ncaoppocpbjejagcggeildfndfbdfaof |
簡介 | Get Year-To-Date Earnings from your Stock & Crypto on Robinhood. Export Robinhood Stock & Crypto transactions to CSV file. |
檔案大小 | 849 KB |
安裝次數 | 4,728 |
目前版本 | 1.15 |
更新時間 | 2024-02-13 |
上架時間 | 2019-12-30 |
評分 | 4.02/5 共 41 次評分 |
開發者 | MadeByMad |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://madebymad.com/ |
說明頁面URL | https://madebymad.com/support |
支援的語言 | 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 } |