AliExpress Product Sale Trends

AliExpress Product Sale Trends

See the sale trends of any product on AliExpress.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AliExpress Product Sale Trends",
  "version": "0.1.1",
  "manifest_version": 2,
  "description": "See the sale trends of any product on AliExpress.com",
  "author": "Mladen Markovic",
  "background": {
    "scripts": [
      "./vendor/jquery.min.js",
      "background.js"
    ],
    "persistent": true
  },
  "icons": {
    "16": "./assets/logo/icon16.png",
    "32": "./assets/logo/icon32.png",
    "48": "./assets/logo/icon48.png",
    "64": "./assets/logo/icon64.png",
    "128": "./assets/logo/icon128.png"
  },
  "browser_action": {
    "default_title": "AliExpress Product Sale Trends",
    "default_icon": "./assets/logo/icon128.png",
    "default_popup": "popup.html",
    "scripts": "popup.js"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "js": [
        "./vendor/jquery.min.js",
        "./vendor/chart.js",
        "./components/aff.js",
        "./components/basic.js"
      ],
      "matches": [
        "*://*.aliexpress.com/*"
      ]
    }
  ],
  "web_accessible_resources": [
    "/*.png",
    "/*.gif",
    "/options.html",
    "./popup.html"
  ],
  "permissions": [
    "storage",
    "*://*.aliexpress.com/*",
    "*://*.aliexpress.ru/*"
  ]
}