Shopify Search By Image

Shopify Search By Image

Find similar products sell on shopify store.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Shopify Search By Image",
  "version": "1.0.0",
  "default_locale": "en",
  "description": "Find similar products sell on shopify store.",
  "author": "E-Media",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "assets/js/vendors.js",
        "assets/js/content_scripts.js"
      ],
      "css": [
        "assets/css/app.css"
      ]
    }
  ],
  "action": {
    "default_title": "Shopify Search By Image",
    "default_popup": "index.html",
    "default_icon": {
      "16": "icons/icon16.png",
      "32": "icons/icon32.png"
    }
  },
  "background": {
    "service_worker": "assets/js/background.js"
  },
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "webRequest",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}