Aliexpress Product Tracking

Aliexpress Product Tracking

The extension allows you to track the status of a parcel right on the order page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "persistent": true,
    "scripts": [
      "background/background.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "css": [
        "css/style.css"
      ],
      "js": [
        "lib/jquery.js",
        "content/content.js"
      ],
      "matches": [
        "*://aliexpress.com/*",
        "*://aliexpress.ru/*",
        "*://*.aliexpress.com/*",
        "*://*.aliexpress.ru/*",
        "*://trade.alibaba.com/*",
        "*://trade.aliexpress.ru/*",
        "*://best.aliexpress.ru/*"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "__MSG_description__",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "ru",
  "manifest_version": 2,
  "name": "Aliexpress Product Tracking",
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "http://*/*",
    "https://*/*"
  ],
  "short_name": "AliTrack",
  "version": "0.0.5",
  "web_accessible_resources": [
    "images/loader.gif",
    "images/btnx.png",
    "jquery.min.map",
    "images/sign.png",
    "images/dev_label.png"
  ]
}