{"id":41206626,"url":"https://github.com/fcfort/betterment-csv-chrome","last_synced_at":"2026-01-22T22:08:24.598Z","repository":{"id":4259548,"uuid":"52098682","full_name":"fcfort/betterment-csv-chrome","owner":"fcfort","description":"Betterment CSV export Chrome extension","archived":false,"fork":false,"pushed_at":"2022-10-29T10:34:33.000Z","size":12857,"stargazers_count":10,"open_issues_count":30,"forks_count":4,"subscribers_count":5,"default_branch":"master","last_synced_at":"2024-04-15T00:14:07.238Z","etag":null,"topics":["betterment","chrome-extension","csv","pdf","qif"],"latest_commit_sha":null,"homepage":"https://chrome.google.com/webstore/detail/betterment-pdf-to-csv-exp/jbneodpofmnammepmnejgkacdbjojcgn","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fcfort.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-02-19T15:57:13.000Z","updated_at":"2022-07-19T09:45:55.000Z","dependencies_parsed_at":"2023-01-11T16:35:27.879Z","dependency_job_id":null,"html_url":"https://github.com/fcfort/betterment-csv-chrome","commit_stats":null,"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/fcfort/betterment-csv-chrome","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fcfort%2Fbetterment-csv-chrome","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fcfort%2Fbetterment-csv-chrome/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fcfort%2Fbetterment-csv-chrome/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fcfort%2Fbetterment-csv-chrome/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fcfort","download_url":"https://codeload.github.com/fcfort/betterment-csv-chrome/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fcfort%2Fbetterment-csv-chrome/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28672552,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-22T20:48:19.482Z","status":"ssl_error","status_checked_at":"2026-01-22T20:48:14.968Z","response_time":144,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["betterment","chrome-extension","csv","pdf","qif"],"created_at":"2026-01-22T22:08:23.973Z","updated_at":"2026-01-22T22:08:24.587Z","avatar_url":"https://github.com/fcfort.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Betterment CSV/QIF Exporter\n\n**_This extension is not affiliated with Betterment in any way._**\n\nBetterment is a wonderful brokerage service, but doesn't provide ticker-level\ntransaction data for easy export. But, this data is available via the PDFs on\nthe Activity page.\n\nThis extension parses those PDFs and creates ticker-level transaction download\nlinks on the Activity Page entirely in the browser using PDF.js and Web Workers.\n\nThis extension can output in both CSV and QIF formats.\n\n# Features\n\n-   CSV/QIF output formats\n-   Download transactions from all the PDFs on the page as one combined file.\n-   All done entirely client-side. *No data leaves your computer*.\n-   Install from the Chrome Web Store\n    [here](https://chrome.google.com/webstore/detail/betterment-pdf-to-csv-exp/jbneodpofmnammepmnejgkacdbjojcgn).\n\n## Dev Setup\n\n-   Install Chrome (used for PDF tests)\n-   Run `sudo apt install npm node-grunt-cli`\n-   Run `npm install`\n\n## Building\n\nTo access development releases, you'll need npm installed. Start by cloning the\nproject locally.\n\nSource Code:\n[github.com/fcfort/betterment-csv-chrome](https://github.com/fcfort/betterment-csv-chrome)\n\n-   Run `grunt build`\n-   Open `chrome://extensions/` or select the menu `Window \u003e Extensions`.\n-   Enable the developer mode at top right.\n-   Click `Load unpacked extension...` and select the `dist/app/` folder.\n\n## Testing\n\n### Unit \u0026 Integration tests\n\n`grunt test --testPdfDir=../relative/path/to/test/pdfs/and/csvs`\n\n## Packaging\n\n`grunt package --testPdfDir=../relative/path/to/test/pdfs/and/csvs`\n\n## Uploading\n\n`grunt upload --secretsFile=../relative/path/to/secrets.json\n--testPdfDir=../relative/path/to/test/pdfs/and/csvs`\n\nAccept the OAuth2 prompt that opens in your browser.\n\n## Preparing a new release\n\n1.  Make code changes\n1.  Bump version number in `package.json`\n1.  Run `grunt upload`, which will build, test, upload, *and publish* the new\n    version to the Chrome Web Store.\n1.  Create a new release on GitHub and upload the zip file as a build artifact.\n\n## Libraries\n\n-   [PDF.js](https://github.com/mozilla/pdf.js) - Client-side PDF parsing.\n-   [patch-worker.js](https://github.com/Rob--W/chrome-api/tree/master/patch-worker) -\n    A workaround to allow the use of Web Workers in Chrome content scripts.\n-   [Mutation Summary](https://github.com/rafaelw/mutation-summary) - Observe\n    changes to the DOM.\n-   [jQuery](https://github.com/jquery/jquery)\n-   [Mocha](https://github.com/mochajs/mocha) - A Javascript test framework.\n\n## Related projects\n\nI wrote a command-line version that parses PDF files and outputs CSV. See\n[github.com/fcfort/betterment-pdf-to-csv](https://github.com/fcfort/betterment-pdf-to-csv).\nThis project is similar but done entirely client-side as a Chrome extension.\n\n## License\n\n[Apache 2.0](https://opensource.org/licenses/Apache-2.0)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffcfort%2Fbetterment-csv-chrome","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffcfort%2Fbetterment-csv-chrome","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffcfort%2Fbetterment-csv-chrome/lists"}