Download Amazon Orders

Download Amazon Orders

Chrome extension that downloads currently viewed Amazon Orders as a CSV

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Download Amazon Orders",
  "description": "Chrome extension that downloads currently viewed Amazon Orders as a CSV",
  "version": "0.0.0.3",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.amazon.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "page_action": {
    "default_icon": "order.png",
    "default_title": "Download Amazon Orders"
  },
  "permissions": [
    "declarativeContent"
  ]
}