Robinhood History Downloader & Analyzer

Easiest way to download and analyze your robinhood transactions

Robinhood History Downloader & Analyzerคืออะไร?

Robinhood History Downloader & Analyzer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rhtocsv และคุณลักษณะหลักของมันคือ "Easiest way to download and analyze your robinhood transactions"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Robinhood History Downloader & Analyzer

ดาวน์โหลดไฟล์ส่วนขยาย Robinhood History Downloader & Analyzer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        ** UPDATED on Aug 2023 ** It should now work on Crypto, Options, and Stocks

Use this extension to download your trade history on Robinhood!

Instructions:
- Go to robinhood.com/account/history and login.
- Scroll down until you see all the transactions you want to download.
- Click the extension icon to open the popup and click the download button.

CSV Format:
The downloaded CSV will contain the following columns: date, time, type, symbol, action, quantity, price, amount, fees, details 

Features:
- Works on stocks, options, and crypto-currencies
- Handles option exercises and assignments 
- Consolidated transaction cards in the case of certain option orders like Iron Condors are also handled
- Different order types are handled properly 

Privacy:
Your data *never* leaves your computer. 

Disclaimer:
Use at your own risk! This tool is being provided for free as a gesture of good will. I built this tool as I needed my transactions for tax filing purposes and Robinhood’s support was no help. Robinhood’s transaction cards constantly change their format and are quite messy to begin with. This extension contains my best attempt at parsing them and extracting data in a clean format, but I make no promises on completeness or correctness of the data in the CSV file. 

Feedback, Questions, or Concerns? Please send an email: [email protected]

Updates:

V0.0.2: 
- Fixed options parsing to work with new Robinhood card html

V0.0.3: 
- Fixed date and time parsing to work with new Robinhood card html

V0.0.4: 
- Major update to make sure it works with the current Robinhood card HTML                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Robinhood History Downloader & Analyzer Robinhood History Downloader & Analyzer
ID cfpnhaccjfaaianelddfckidjlnmoeab
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/robinhood-history-downloa/cfpnhaccjfaaianelddfckidjlnmoeab
คำอธิบาย Easiest way to download and analyze your robinhood transactions
ขนาดไฟล์ 3.36 MB
จำนวนการติดตั้ง 3,085
เวอร์ชันปัจจุบัน 0.0.4
อัปเดตครั้งล่าสุด 2023-08-16
วันที่เผยแพร่ 2021-04-16
คะแนน 3.46/5 รวมทั้งหมด 26 คะแนน
ผู้พัฒนา rhtocsv
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Robinhood History Downloader & Analyzer",
    "short_name": "RH Analyzer",
    "description": "Easiest way to download and analyze your robinhood transactions",
    "version": "0.0.4",
    "icons": {
        "128": "images\/rh2csv_logo_500.png"
    },
    "browser_action": {
        "default_icon": "images\/rh2csv_logo_500.png",
        "default_popup": "popover.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.robinhood.com\/account\/*"
            ],
            "js": [
                "packages\/jquery-3.1.1.min.js",
                "RHParseAndSave.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}