Fidelity to Xero Journal Entry
Accelerate you or your client's investment accounting with Xero
Fidelity to Xero Journal Entryคืออะไร?
Fidelity to Xero Journal Entry เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Accelerate you or your client's investment accounting with Xero"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fidelity to Xero Journal Entry
ดาวน์โหลดไฟล์ส่วนขยาย Fidelity to Xero Journal Entry ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Fidelity to Xero Journal Entry |
ID | hdpefbjlkddmkbccdbjidpcnbgonhomh |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/fidelity-to-xero-journal/hdpefbjlkddmkbccdbjidpcnbgonhomh |
คำอธิบาย | Accelerate you or your client's investment accounting with Xero |
ขนาดไฟล์ | 416 KB |
จำนวนการติดตั้ง | 21 |
เวอร์ชันปัจจุบัน | 0.0.4 |
อัปเดตครั้งล่าสุด | 2020-05-28 |
วันที่เผยแพร่ | 2020-05-27 |
ผู้พัฒนา | Unknown |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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" } } |