Robinhood History Downloader & Analyzer

Robinhood History Downloader & Analyzer

Easiest way to download and analyze your robinhood transactions

Merlin
Additional files are visible only to premium users

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"
  ]
}