Ebay Purchase History Downloader
Downloads Ebay's purchase history
Ebay Purchase History Downloader là gì?
Ebay Purchase History Downloader là một tiện ích mở rộng Chrome được phát triển bởi greenncoder, và tính năng chính của nó là "Downloads Ebay's purchase history".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Ebay Purchase History Downloader
Tải xuống các tệp mở rộng Ebay Purchase History Downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
eBay does not provide a way to download the purchase history of a user account. This extension allows users to easily download purchase history with just a button click. This extension will always be free to use and modify as per your liking. However, you are welcome to support me: https://ko-fi.com/greencoder Version 3.4 Update Notes (02/09/2024 EST): 1) Tracking Number Support: Now includes tracking numbers for pending delivery orders. Version 3.3 update notes (02/02/2024 EST): 1) Removed options beyond 2017 as data beyond that year is not available. Version 3.2 update notes (01/31/2024 EST): 1) Year Range Selection: Users can now select a range of years for data download. Currently, each year within the range is downloaded as a separate Excel file. Future updates may include aggregation into a single spreadsheet. 2) Design update on the popup. Version 3.1 update notes (01/25/2024 EST): 1) Added more options to allow users to download up to 5 years in the past 2) Minor update on the code to make the sheet naming more dynamic and do automatic truncation if necessary Version 3.0 update notes (10/11/2023 EST): 1) Increased the limit of number of orders to 300 2) Fix issue where sometimes the excel export would run before the processing is complete Version 2.9 update notes (10/06/2022 EST): 1) Added more optional chaining to prevent errors. Version 2.8 update notes (10/02/2022 EST): 1) Plugin now supports itemized breakdown of multiple items within the same order. Before this update the order detail was always correct but it would not itemize it. Version 2.7 update notes (09/25/2022 EST): 1) Add fix for potential bug where empty page request was received 2) Increase the max page lookup in case empty page is not found to 40. 3) Add support for Canada 4) Added donation link if you want to support my work :) Version 2.6 update notes: 1) Dynamically detect URL for countries outside US Version 2.5 update notes: 1) Include support for eBay Australia Version 2.4 update notes: 1) Fix 2021 download issue for some users 2) Verbiage change on the extension itself to simplify the instruction Version 2.3 update notes: 1) Show tracking number 2) Close the window after the download button is clicked 3) Programmatic changes Version 2.2 update notes: 1) Show order notes field 2) Show order detail URL and order total 3) Change the description as the users do not need to be on the purchase history page anymore. They need to be on eBay and they need to be logged in. 4) Additional changes for Chrome extension compliance. Version 2.1 update notes: 1) Converted the extension to API based on version 2 design change Version 2.0 update notes: 1) Changed the date detection method to be more dynamic. 2) Started making changes for version 2 "v2" design of eBay purchase history page. Version 1.9 update notes: 1) Changed the date detection method as eBay changed the design. 2) Started migrating extension to manifest version 3 as manifest 2 will no longer be supported in 2023. 3) Minor code changes.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Ebay Purchase History Downloader |
ID | dhccpfcjgmlajnnoigjhokbfgpaamhpe |
URL Chính Thức | https://chromewebstore.google.com/detail/ebay-purchase-history-dow/dhccpfcjgmlajnnoigjhokbfgpaamhpe |
Mô tả | Downloads Ebay's purchase history |
Kích Thước Tệp | 382 KB |
Số Lần Cài Đặt | 4,387 |
Phiên Bản Hiện Tại | 3.4 |
Cập Nhật Lần Cuối | 2024-02-10 |
Ngày Phát Hành | 2020-05-04 |
Đánh Giá | 3.74/5 Tổng số 54 Đánh Giá |
Nhà Phát Triển | greenncoder |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Ebay Purchase History Downloader", "description": "Downloads Ebay's purchase history ", "version": "3.4", "permissions": [ "activeTab", "http:\/\/*\/", "https:\/\/*\/" ], "content_scripts": [ { "all_frames": false, "matches": [ "*:\/\/*.ebay.com\/*", "*:\/\/*.ebay.co.uk\/*", "*:\/\/*.ebay.com.au\/*", "*:\/\/*.ebay.com.ca\/*" ], "exclude_matches": [], "js": [ "\/src\/jquery.js", "\/src\/sheet-min.js", "\/src\/file-saver-min.js", "content.js" ] } ], "browser_action": { "default_title": "Download Purchase History.", "default_icon": "icon.png", "default_popup": "popup.html" }, "manifest_version": 2 } |