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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Frank Fort และคุณลักษณะหลักของมันคือ "Easily download your ticker-level transactions from Betterment.com as CSV or QIF files."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Betterment PDF to CSV exporter

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}