CreditKarma Tax 1099-B CapGains Import
Extends the CreditKarma interface to allow CSV file imports of 1099-B infomation.
CreditKarma Tax 1099-B CapGains Importคืออะไร?
CreditKarma Tax 1099-B CapGains Import เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mattotodd และคุณลักษณะหลักของมันคือ "Extends the CreditKarma interface to allow CSV file imports of 1099-B infomation."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CreditKarma Tax 1099-B CapGains Import
ดาวน์โหลดไฟล์ส่วนขยาย CreditKarma Tax 1099-B CapGains Import ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension adds an Import section to the top of the CreditKarma Tax Capital Gains table. This will allow users to import data from csv files they get from exchanges, brokerages, or trades tracked in speadsheets. After installing the extension, csv files can be imported by Choosing a format in the dropdown, and then "Choose File" and selecting the csv file from your computer. CreditKarma CapGains Form: https://tax.creditkarma.com/taxes/CapitalGainsFullListSummary.action Source code for the extension can be found at: https://github.com/mattotodd/ck-tax-extension Currently Supported formats: -Fidelity 1099 (Consolidated CSV) -Cointracking.info (Tax CSV Export) -Bitcoin.tax (Tax CSV Export) -Default Default Import will accept any CSV file with the following headers in row 1: holdingType - short or long reportingCategory - 1 for 1099 was reported, 2 for 1099 was not reported, 3 for no 1099 description - 'description of sale' dateAcquired - mm/dd/yyyy dateSold - mm/dd/yyyy salesPrice - 0.00 costBasis - 0.00 The import will not overwrite any rows that have a description, sale price or cost. You can clear the whole table by selecting "Clear all entries" and then click the green "Next" button. This extension and software is not developed or affiliated with Credit Karma.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | dehmakdmiooeomgajgfjjfibkelmheob |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/creditkarma-tax-1099-b-ca/dehmakdmiooeomgajgfjjfibkelmheob |
คำอธิบาย | Extends the CreditKarma interface to allow CSV file imports of 1099-B infomation. |
ขนาดไฟล์ | 307 KB |
จำนวนการติดตั้ง | 285 |
เวอร์ชันปัจจุบัน | 1.3 |
อัปเดตครั้งล่าสุด | 2018-02-05 |
วันที่เผยแพร่ | 2018-02-05 |
คะแนน | 3.86/5 รวมทั้งหมด 7 คะแนน |
ผู้พัฒนา | mattotodd |
ประเภทการชำระเงิน | free |
URL หน้าช่วยเหลือ | https://github.com/mattotodd/ck-tax-extention |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CreditKarma Tax 1099-B CapGains Import", "description": "Extends the CreditKarma interface to allow CSV file imports of 1099-B infomation.", "version": "1.3", "permissions": [ "tabs", "https:\/\/tax.creditkarma.com\/taxes" ], "content_scripts": [ { "matches": [ "https:\/\/tax.creditkarma.com\/taxes\/CapitalGainsFullListSummary.action" ], "js": [ "lib\/jquery-3.3.1.min.js", "importers\/default.js", "importers\/bitcoinTax.js", "importers\/cointrackingInfo.js", "importers\/fidelity.js", "CapitalGainsImporter.js" ] } ] } |