Robinhood Realized Earnings & CSV File Export

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.

Merlin
Additional files are visible only to premium users

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
}