BigCommerce Aliexpress Importer

BigCommerce Aliexpress Importer

It is used to import product from aliexpress to BigCommerce store and it can be used with Webkul BigCommerce Aliexpress Importer.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "BigCommerce Aliexpress Importer",
  "description": "It is used to import product from aliexpress to BigCommerce store and it can be used with Webkul BigCommerce Aliexpress Importer.",
  "version": "3.0.0",
  "content_scripts": [
    {
      "matches": [
        "*://*.aliexpress.com/*"
      ],
      "js": [
        "resources/js/jquery.min.js",
        "resources/js/wk_bigcommerceimporter.js",
        "resources/js/background.js",
        "resources/js/content.js"
      ],
      "css": [
        "resources/style/bigcommerce_import.css"
      ],
      "all_frames": false
    }
  ],
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "icons": {
    "128": "resources/image/import-icon.png"
  },
  "action": {
    "default_title": "Run only when aliexpress site open",
    "default_icon": "resources/image/import-icon.png",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "image/*.png",
        "js/jquery.min.js",
        "js/wk_bigcommerceimporter.js",
        "resources/js/background.js",
        "style/bigcommerce_import.css",
        "resources/image/import-icon.png"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    }
  ],
  "manifest_version": 3
}