Search by image on Ebay

Search by image on Ebay

Search for any goods in one click on Ebay.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "__MSG_extDescription__",
  "version": "3.4.6",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "default_locale": "en",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "icons": {
    "128": "ic.png"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "contentScript.bundle.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "ic.png",
        "loader.css",
        "toast.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "unlimitedStorage",
    "contextMenus",
    "scripting"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ]
}