AliExpress Review Importer

AliExpress Review Importer

AliExpress Review Importer is a completely free app that helps you import reviews from AliExpress

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AliExpress Review Importer",
  "description": "AliExpress Review Importer is a completely free app that helps you import reviews from AliExpress",
  "version": "0.1.8",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/html/import_modal.html",
        "assets/html/toast.html",
        "assets/images/aeri_brand_logo_20.png"
      ],
      "matches": [
        "https://app.oberlo.com/*",
        "https://*.aliexpress.com/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://judge.me/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://app.oberlo.com/my-products*"
      ],
      "js": [
        "assets/javascripts/libs/jquery-3.6.0.min.js",
        "assets/javascripts/libs/bootstrap.bundle.min.js",
        "assets/javascripts/integrate_oberlo.js"
      ],
      "css": [
        "assets/stylesheets/libs/bootstrap.min.css",
        "assets/stylesheets/common.css",
        "assets/stylesheets/integrate_oberlo.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://*.aliexpress.com/*"
      ],
      "js": [
        "assets/javascripts/libs/jquery-3.6.0.min.js",
        "assets/javascripts/libs/bootstrap.bundle.min.js",
        "assets/javascripts/libs/jquery.autocomplete.min.js",
        "assets/javascripts/integrate_aliexpress.js"
      ],
      "css": [
        "assets/stylesheets/libs/bootstrap.min.css",
        "assets/stylesheets/autocomplete.css",
        "assets/stylesheets/common.css",
        "assets/stylesheets/integrate_aliexpress.css"
      ],
      "run_at": "document_end"
    }
  ],
  "host_permissions": [
    "https://judge.me/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/aeri_brand_logo_16.png",
      "32": "/images/aeri_brand_logo_32.png",
      "48": "/images/aeri_brand_logo_48.png",
      "128": "/images/aeri_brand_logo_128.png"
    }
  },
  "icons": {
    "16": "/images/aeri_brand_logo_16.png",
    "32": "/images/aeri_brand_logo_32.png",
    "48": "/images/aeri_brand_logo_48.png",
    "128": "/images/aeri_brand_logo_128.png"
  }
}