Fidelity to Xero Journal Entry
Accelerate you or your client's investment accounting with Xero
Was ist Fidelity to Xero Journal Entry?
Fidelity to Xero Journal Entry ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Accelerate you or your client's investment accounting with Xero".
Erweiterungsscreenshots
Fidelity to Xero Journal Entry-Erweiterungs-CRX-Datei herunterladen
Laden Sie Fidelity to Xero Journal Entry-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | hdpefbjlkddmkbccdbjidpcnbgonhomh |
| Offizielle URL | https://chromewebstore.google.com/detail/fidelity-to-xero-journal/hdpefbjlkddmkbccdbjidpcnbgonhomh |
| Beschreibung | Accelerate you or your client's investment accounting with Xero |
| Dateigröße | 416 KB |
| Installationsanzahl | 21 |
| Aktuelle Version | 0.0.4 |
| Letztes Update | 2020-05-28 |
| Veröffentlichungsdatum | 2020-05-27 |
| Entwickler | Unknown |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
}
} | |