RobinHood Stocks Export to Excel

RobinHood Stocks Export to Excel

Automatically create an Excel file for your Robinhood stocks.

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 Stocks Export to Excel",
  "version": "1.03",
  "description": "Automatically create an Excel file for your Robinhood stocks.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.robinhood.com/*"
      ],
      "js": [
        "jquery-3.5.0.min.js",
        "xlsx.full.min.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icon16.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "downloads",
    "*://*.robinhood.com/*",
    "tabs"
  ]
}