Amazon Japan Order History Downloader

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

Additional files are visible only to premium users

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