Search by image on Aliexpress

Search by image on Aliexpress

The extension allows you to use any picture (photo) to quickly search for products on Aliexpress

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "0.4.0",
  "icons": {
    "16": "/img/16.png",
    "48": "/img/48.png",
    "128": "/img/128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "Start page"
  },
  "permissions": [
    "storage",
    "contextMenus",
    "https://serchimage.xyz/"
  ],
  "background": {
    "service_worker": "/js/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.aliexpress.com/*",
        "https://*.aliexpress.ru/*",
        "https://*.aliexpress.us/*"
      ],
      "js": [
        "/js/inject.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "libs/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}