BeProfit

BeProfit

Easily sync your AliExpress orders to BeProfit

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_extName__",
  "homepage_url": "http://localhost:8080/",
  "description": "Easily sync your AliExpress orders to BeProfit",
  "default_locale": "en",
  "permissions": [
    "tabs",
    "storage",
    "https://ilogisticsaddress.aliexpress.com/*",
    "https://beprofit-api-test.become.co/*",
    "https://beprofit-api.become.co/*"
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://trade.aliexpress.com/order_list.htm*",
        "https://trade.aliexpress.com/orderList.htm*",
        "https://www.aliexpress.com/p/order/index.html*"
      ],
      "js": [
        "js/content-script.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "devtools_page": "devtools.html",
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "__MSG_extName__",
    "default_icon": {
      "19": "icons/16.png",
      "38": "icons/38.png"
    }
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "version": "1.3.3",
  "content_security_policy": "script-src 'self' ; object-src 'self'"
}