Betterment PDF to CSV exporter

Betterment PDF to CSV exporter

Easily download your ticker-level transactions from Betterment.com as CSV or QIF files.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Betterment PDF to CSV exporter",
  "short_name": "Betterment PDF to CSV",
  "version": "0.1.10",
  "description": "Easily download your ticker-level transactions from Betterment.com as CSV or QIF files.",
  "author": "Frank Fort <[email protected]>",
  "homepage_url": "https://github.com/fcfort/betterment-csv-chrome",
  "minimum_chrome_version": "76.0.0.0",
  "icons": {
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://wwws.betterment.com/app*"
      ],
      "js": [
        "load-pdf.js",
        "pdf.worker.js",
        "libs.js",
        "main.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "background": {
    "scripts": [
      "icon.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_icon": {
      "38": "icon38.png"
    },
    "default_title": "Betterment PDF to CSV exporter",
    "default_popup": "options.html"
  },
  "permissions": [
    "declarativeContent",
    "storage"
  ],
  "web_accessible_resources": [
    "pdf.worker.js"
  ]
}