Amazon™ Bulk Shipping Automation

Amazon™ Bulk Shipping Automation

Allows Amazon FBM sellers to bulk ship orders and change the shipping option for all orders in that batch with one click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Amazon™ Bulk Shipping Automation",
  "description": "Allows Amazon FBM sellers to bulk ship orders and change the shipping option for all orders in that batch with one click.",
  "version": "0.2",
  "author": "MERNWEB",
  "content_scripts": [
    {
      "matches": [
        "*://*.sellercentral.amazon.com/bulk-buy-shipping-v2*"
      ],
      "js": [
        "bulkship.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.sellercentral.amazon.com/orders-v3/mfn/unshipped/*"
      ],
      "js": [
        "unshipped.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "assets/icon16.png",
    "32": "assets/icon32.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  },
  "action": {
    "default_title": "Amazon™ Bulk Shipping Automation",
    "default_icon": "assets/icon128.png"
  }
}