Goods Searcher

Goods Searcher

This extension is looking for the right product for the selected text on popular trading platforms: Aliexpress, eBay, Amazon...

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "js/bg.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/48x48.png",
    "default_popup": "pop.html",
    "default_title": "__MSG_extName__"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "js/boot.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "icons": {
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "permissions": [
    "storage",
    "cookies",
    "*://*.aliexpress.com/*",
    "*://*.aliexpress.ru/*"
  ],
  "version": "3.4"
}