亚马逊地址补全

亚马逊地址补全

支持快速批量导出亚马逊订单地址, 为亚马逊卖家服务

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "亚马逊地址补全",
  "version": "1.0.7",
  "description": "",
  "author": "",
  "permissions": [
    "scripting",
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "256": "assets/logo.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://sellercentral.amazon.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [],
      "matches": []
    }
  ],
  "manifest_version": 3
}