Autolo Product Importer

Autolo Product Importer

Import products from AliExpress.com to your Autolo and shopify account using this chrome extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Autolo Product Importer",
  "version": "1.30",
  "description": "Import products from AliExpress.com to your Autolo and shopify account using this chrome extension.",
  "permissions": [
    "declarativeContent",
    "activeTab",
    "tabs",
    "storage",
    "https://api.autoloapp.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.aliexpress.com/*"
      ],
      "js": [
        "sweetAlert/sweetAlert.min.js",
        "injected.js"
      ],
      "all_frames": true
    }
  ],
  "page_action": {
    "default_popup": "activePage.html",
    "default_icon": {
      "16": "images/icon16.png",
      "32": "images/icon32.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    }
  },
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "web_accessible_resources": [
    "images/icon.png",
    "images/loading.gif"
  ],
  "manifest_version": 2
}