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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}