Amazon Address Autofill

Amazon Address Autofill

Effortlessly fill in address fields on Amazon order pages with just 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 Address Autofill",
  "version": "1.0.0",
  "description": "Effortlessly fill in address fields on Amazon order pages with just one click!",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icon16.png",
      "48": "icon48.png",
      "128": "icon128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://amazon.com/*",
        "https://www.amazon.com/*",
        "https://sellercentral.amazon.ca/*",
        "https://sellercentral.amazon.com/*",
        "https://sellercentral.amazon.com.mx/*",
        "https://sellercentral.amazon.com.br/*",
        "https://sellercentral.amazon.co.uk/*",
        "https://sellercentral.amazon.de/*",
        "https://sellercentral.amazon.it/*",
        "https://sellercentral.amazon.fr/*",
        "https://sellercentral.amazon.es/*",
        "https://sellercentral-europe.amazon.com/*",
        "https://sellercentral.amazon.nl/*",
        "https://sellercentral.amazon.se/*",
        "https://sellercentral.amazon.pl/*",
        "https://sellercentral.amazon.eg/*",
        "https://sellercentral.amazon.com.tr/*",
        "https://sellercentral.amazon.com.sa/*",
        "https://sellercentral.amazon.ae/*",
        "https://sellercentral.amazon.in/*",
        "https://sellercentral.amazon.sg/*",
        "https://sellercentral.amazon.com.au/*",
        "https://sellercentral.amazon.co.jp/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}