Trading212 CSV exporter

Trading212 CSV exporter

This extension allows you to export to a CSV file your Holdings, Dividends, and Orders. You can export Dividends and Orders to a…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Trading212 CSV exporter",
  "version": "1.11",
  "content_scripts": [
    {
      "css": [
        "styles.css"
      ],
      "matches": [
        "https://live.trading212.com/",
        "https://demo.trading212.com/"
      ],
      "js": [
        "background.js",
        "charts.js",
        "listener.js",
        "utils.js"
      ]
    }
  ],
  "background": {
    "service_worker": "service_worker.js"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "scripting",
    "activeTab"
  ]
}