AliExpress Search By Image Anywhere

AliExpress Search By Image Anywhere

Aliexpress search by image can search for similar Aliexpress products by image on any page!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "AliExpress Search By Image Anywhere",
  "version": "1.0.0",
  "default_locale": "en",
  "description": "Aliexpress search by image can search for similar Aliexpress products by image on any page!",
  "author": "AliQuick Search",
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
  },
  "background": {
    "service_worker": "assets/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "assets/js/vendors.js",
        "assets/js/content_scripts.js"
      ],
      "css": [
        "assets/css/app.css"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_title": "AliExpress Search By Image Anywhere",
    "default_popup": "index.html",
    "default_icon": {
      "16": "icons/icon16.png",
      "32": "icons/icon32.png"
    }
  },
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "storage",
    "webRequest",
    "contextMenus"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}