Amazon Japan Order History Downloader
For use on Amazon Japan. Fetch order details (date, item names, etc) from the Order History page and download as CSV file
Amazon Japan Order History Downloader란 무엇입니까?
Amazon Japan Order History Downloader은(는) Ken Goh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "For use on Amazon Japan. Fetch order details (date, item names, etc) from the Order History page and download as CSV file"입니다.
확장 프로그램 스크린샷
Amazon Japan Order History Downloader 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension allows downloading order history details from Amazon Japan (amazon.co.jp) in a structured file format, which is useful for the purpose of keeping track of personal spending and finance. It fetches order details for all orders on the currently selected page in Order History ("注文履歴"). If you have more than one page of Order History, you can open each page as needed and run it. Finally, all fetched orders can be downloaded as one consolidated file. The export file is in pipe-delimited format with these fields: Order ID, Order Date, Item name, Price. Limitations - Digital order items (e.g. e-book) are not supported currently. - The display language on Amazon Japan must be in Japanese. - After downloading orders on a page, please double-check the "Fetched orders" count. A full page should normally have 10 orders, so it should be fairly obvious if something is missed. (While the extension is tested to be working as of the release date, Amazon Japan occasionally changes its page layout in subtle ways, which would cause this extension to break. A fix is necessary in such case.) Release Notes 1.1 - Fixed issue where some orders were missed and some had errors due to failing to find the order date, It appears there were some changes to Amazon Japan's page layout recently.
확장 프로그램 기본 정보
이름 | Amazon Japan Order History Downloader |
ID | kjdfladalknkkphpagfmfjndkaapocil |
공식 URL | https://chromewebstore.google.com/detail/amazon-japan-order-histor/kjdfladalknkkphpagfmfjndkaapocil |
설명 | For use on Amazon Japan. Fetch order details (date, item names, etc) from the Order History page and download as CSV file |
파일 크기 | 14.33 KB |
설치 횟수 | 103 |
현재 버전 | 1.1 |
최근 업데이트 | 2023-11-17 |
출시 날짜 | 2022-11-15 |
평점 | 4.00/5 총 1 개의 평점 |
개발자 | Ken Goh |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/kchgoh/amazon-japan-orderhist-download |
지원되는 언어 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_extName__", "description": "__MSG_extDesc__", "version": "1.1", "homepage_url": "https:\/\/github.com\/kchgoh\/amazon-japan-orderhist-download", "default_locale": "en", "icons": { "16": "img\/icon-16.png", "48": "img\/icon-48.png", "128": "img\/icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.amazon.co.jp\/your-orders\/*", "https:\/\/www.amazon.co.jp\/gp\/your-account\/order-history*", "https:\/\/www.amazon.co.jp\/gp\/css\/order-history*" ], "js": [ "js\/content-script.js" ] } ] } |