AliExpress: Search similar products

AliExpress: Search similar products

The extension for AliExpress finds similar products at a better price.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_name__",
  "version": "1.4.7",
  "description": "__MSG_description__",
  "icons": {
    "64": "img/64.png",
    "128": "img/128.png"
  },
  "default_locale": "en",
  "background": {
    "persistent": false,
    "scripts": [
      "js/background.js"
    ]
  },
  "web_accessible_resources": [
    "img/*.png"
  ],
  "browser_action": {
    "default_title": " ",
    "default_icon": "img/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.aliexpress.com/*",
        "*://*.aliexpress.ru/*"
      ],
      "run_at": "document_idle",
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/jquery-1.12.1.min.js",
        "js/content.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "unlimitedStorage",
    "cookies",
    "*://*.aliexpress.com/*",
    "*://*.aliexpress.ru/*"
  ]
}