AliTools

AliTools

Tracking all international parcels from aliexpress, search in goods, search by image and fast access to the Aliexpress.com menu

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_chrome_extension_name__",
  "short_name": "__MSG_chrome_extension_short_name__",
  "description": "__MSG_chrome_extension_description__",
  "version": "2.0",
  "action": {
    "default_popup": "popup.html",
    "default_title": "__MSG_chrome_extension_short_name__"
  },
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "background": {
    "service_worker": "/js/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.aliexpress.com/*",
        "https://*.aliexpress.ru/*",
        "https://*.aliexpress.us/*"
      ],
      "js": [
        "/js/inject.js"
      ]
    }
  ],
  "icons": {
    "16": "16x16.png",
    "48": "48x48.png",
    "128": "128x128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "libs/*",
        "js/config.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}