Convenior AliExpress Chrome Extension Tool

Convenior AliExpress Chrome Extension Tool

Price/Product Comparison: view information on Amazon products that are associated with AliExpress products

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Convenior AliExpress Chrome Extension Tool",
  "short_name": "Convenior AliExpress Product Comparison Tool",
  "description": "Price/Product Comparison: view information on Amazon products that are associated with AliExpress products",
  "version": "0.0.9",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.aliexpress.com/*"
      ],
      "js": [
        "js/vendor.js",
        "js/content_script.js"
      ],
      "css": [
        "css/convenior.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/vendor.js",
      "js/background.js"
    ]
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "permissions": [
    "activeTab",
    "storage",
    "<all_urls>"
  ]
}