Betterment PDF to CSV exporter

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

Betterment PDF to CSV exporter là gì?

Betterment PDF to CSV exporter là một tiện ích mở rộng Chrome được phát triển bởi Frank Fort , và tính năng chính của nó là "Easily download your ticker-level transactions from Betterment.com as CSV or QIF files.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Betterment PDF to CSV exporter

Tải xuống các tệp mở rộng Betterment PDF to CSV exporter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Betterment PDF to CSV exporter Betterment PDF to CSV exporter
ID jbneodpofmnammepmnejgkacdbjojcgn
URL Chính Thức https://chromewebstore.google.com/detail/betterment-pdf-to-csv-exp/jbneodpofmnammepmnejgkacdbjojcgn
Mô tả Easily download your ticker-level transactions from Betterment.com as CSV or QIF files.
Kích Thước Tệp 690 KB
Số Lần Cài Đặt 444
Phiên Bản Hiện Tại 0.1.10
Cập Nhật Lần Cuối 2022-01-10
Ngày Phát Hành 2020-06-01
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Frank Fort
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/fcfort/betterment-csv-chrome
URL Trang Trợ Giúp https://github.com/fcfort/betterment-csv-chrome/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}