Dropshipman-Aliexpress&Temu Product Importer

Dropshipman-Aliexpress&Temu Product Importer

Import and sync products from AliExpress / Temu to your Shopify store

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Dropshipman-Aliexpress&Temu Product Importer",
  "version": "2.1.0",
  "manifest_version": 3,
  "description": "Import and sync products from AliExpress / Temu to your Shopify store",
  "icons": {
    "16": "logo16.png",
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "action": {
    "default_title": "Dropshipman-Aliexpress&Temu Product Importer",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "./background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.temu.com/*",
        "https://*.aliexpress.com/*",
        "https://*.aliexpress.us/*",
        "https://*.1688.com/*",
        "*://*.dropshipman.com/*"
      ],
      "js": [
        "./content_scripts.js"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "https://api.dropshipman.com/*",
    "https://test-api.dropshipman.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/logo128.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}