Bulk Invoice Downloader

Bulk Invoice Downloader

This extension allows to Download Bulk Invoice from Seller Central. Its a Unofficial Free Tool.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Bulk Invoice Downloader",
  "description": "This extension allows to Download Bulk Invoice from Seller Central. Its a Unofficial Free Tool.",
  "version": "1.0",
  "icons": {
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://sellercentral.amazon.in/gp/orders-v2/list/*"
      ],
      "js": [
        "jq321.min.js",
        "content-script.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "http://*/*",
    "downloads"
  ]
}