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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ken Goh และคุณลักษณะหลักของมันคือ "For use on Amazon Japan. Fetch order details (date, item names, etc) from the Order History page and download as CSV file"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Amazon Japan Order History Downloader

ดาวน์โหลดไฟล์ส่วนขยาย Amazon Japan Order History Downloader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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"
            ]
        }
    ]
}