Magento 2 AliExpress Importer

Magento 2 AliExpress Importer

It is used to import product from AliExpress to magento store and it can be used with webkul magento2 dropship management module.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Magento 2 AliExpress Importer",
  "version": "1.8.2",
  "manifest_version": 3,
  "description": "It is used to import product from AliExpress to magento store and it can be used with webkul magento2 dropship management module.",
  "background": {
    "service_worker": "resources/js/background.js"
  },
  "icons": {
    "128": "resources/images/Icon.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "tabs"
  ],
  "action": {
    "default_icon": "resources/images/icon-disabled.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*.png",
        "resources/js/wk_inserted.js",
        "resources/js/jquery.min.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.aliexpress.com/*",
        "http://*.aliexpress.com/*",
        "https://*.aliexpress.us/*",
        "http://*.aliexpress.us/*"
      ],
      "js": [
        "resources/js/jquery.min.js",
        "resources/js/content.js"
      ],
      "css": [
        "resources/css/dropship.css"
      ]
    }
  ]
}