Amazon Invoice Downloader

Amazon Invoice Downloader

Automated Amazon order invoce downloader, Simply press a start button, and relax while it does the job for you.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Amazon Invoice Downloader",
  "permissions": [
    "https://*.extensionsworld.com/*",
    "storage"
  ],
  "version": "2.4",
  "background": {
    "scripts": [
      "js/utils.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.amazon.co.uk/*",
        "https://*.amazon.com/*",
        "https://*.amazon.de/*",
        "https://*.amazon.ca/*"
      ],
      "js": [
        "js/utils.js",
        "js/privateUtils.js",
        "js/index.js"
      ]
    }
  ],
  "icons": {
    "64": "icon64.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "64": "icon64.png",
      "128": "icon128.png"
    },
    "default_title": "Amazon Invoice Downloader",
    "default_popup": "html/index.html"
  }
}