Betterment PDF to CSV exporter

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

O que é Betterment PDF to CSV exporter?

Betterment PDF to CSV exporter é uma extensão do Chrome desenvolvida por Frank Fort , e sua principal característica é "Easily download your ticker-level transactions from Betterment.com as CSV or QIF files.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Betterment PDF to CSV exporter

Baixe arquivos de extensão Betterment PDF to CSV exporter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Betterment PDF to CSV exporter Betterment PDF to CSV exporter
ID jbneodpofmnammepmnejgkacdbjojcgn
URL Oficial https://chromewebstore.google.com/detail/betterment-pdf-to-csv-exp/jbneodpofmnammepmnejgkacdbjojcgn
Descrição Easily download your ticker-level transactions from Betterment.com as CSV or QIF files.
Tamanho do Arquivo 690 KB
Contagem de Instalações 444
Versão Atual 0.1.10
Última Atualização 2022-01-10
Data de Publicação 2020-06-01
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Frank Fort
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/fcfort/betterment-csv-chrome
URL da Página de Ajuda https://github.com/fcfort/betterment-csv-chrome/issues
Idiomas Suportados 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"
    ]
}