Fidelity to Xero Journal Entry

Accelerate you or your client's investment accounting with Xero

What is Fidelity to Xero Journal Entry?

Fidelity to Xero Journal Entry is a Chrome extension developed by Unknown, and its main feature is "Accelerate you or your client's investment accounting with Xero".

Extension Screenshots

screenshot
screenshot

Download Fidelity to Xero Journal Entry Extension CRX File

Download Fidelity to Xero Journal Entry extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Scrape Fidelity brokerage data from Fidelity HTML statements to a CSV file ready for import to Xero as a journal entry.

Code the statement to Xero G/L accounts once and re-use each month to use Xero as your personal budgeting and financial statement preparation tool.

This extension scrapes: 

Cash movements
Taxable interest and dividends
Gains
Nontaxable interest and dividends                    

Extension Basic Information

Name Fidelity to Xero Journal Entry Fidelity to Xero Journal Entry
ID hdpefbjlkddmkbccdbjidpcnbgonhomh
Official URL https://chromewebstore.google.com/detail/fidelity-to-xero-journal/hdpefbjlkddmkbccdbjidpcnbgonhomh
Description Accelerate you or your client's investment accounting with Xero
File Size 416 KB
Installation Count 21
Current Version 0.0.4
Last Updated 2020-05-28
Publish Date 2020-05-27
Developer Unknown
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fidelity to Xero Journal Entry",
    "version": "0.0.4",
    "description": "Accelerate you or your client's investment accounting with Xero",
    "homepage_url": "https:\/\/template",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "storage",
        "*:\/\/*.fidelity.com\/*"
    ],
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "js\/contentBundle.js"
            ],
            "matches": [
                "*:\/\/*.fidelity.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": "img\/icon-16x16.png",
        "default_popup": "popup\/popup.html",
        "default_title": "Accelerate you or your client's investment accounting with Xero"
    },
    "icons": {
        "48": "img\/icon-48x48.png",
        "128": "img\/icon-128x128.png"
    }
}