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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
🔥 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 |
공식 URL | 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 } |