Betterment PDF to CSV exporter

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

什么是Betterment PDF to CSV exporter?

Betterment PDF to CSV exporter是由Frank Fort 开发的Chrome扩展程序,该扩展的主要功能是“Easily download your ticker-level transactions from Betterment.com as CSV or QIF files.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Betterment PDF to CSV exporter扩展crx文件

下载Betterment PDF to CSV exporter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Adds a download link next to each PDF statement on the Activity page with the ticker-level transaction data for easy exporting to your favorite financial software.

There is support for exporting as CSV, QIF (Quicken format), and for a combined download for all PDFs on the Activity page.

Betterment is a wonderful brokerage service, but doesn't provide ticker-level transaction data for easy export. But, this data is available via the PDFs on the Activity page.

This extension parses those PDFs and creates ticker-level transaction download links on the Activity Page entirely in the browser using PDF.js and Web Workers.

See https://github.com/fcfort/betterment-csv-chrome for more information.                    

扩展基本信息

名称 Betterment PDF to CSV exporter Betterment PDF to CSV exporter
ID jbneodpofmnammepmnejgkacdbjojcgn
官方URL https://chromewebstore.google.com/detail/betterment-pdf-to-csv-exp/jbneodpofmnammepmnejgkacdbjojcgn
简介 Easily download your ticker-level transactions from Betterment.com as CSV or QIF files.
文件大小 690 KB
安装次数 444
当前版本 0.1.10
更新时间 2022-01-10
上架时间 2020-06-01
评分 5.00/5 共1次评分
开发者 Frank Fort
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/fcfort/betterment-csv-chrome
帮助页面URL https://github.com/fcfort/betterment-csv-chrome/issues
支持的语言 en-US
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 ",
    "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"
    ]
}