AliExpress Order Extractor

AliExpress Order Extractor

This extension can help small businesses to create purchase order from order page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "author": "Oxymoron Technique",
  "name": "AliExpress Order Extractor",
  "short_name": "AliExpress Order",
  "version": "1.1",
  "description": "This extension can help small businesses to create purchase order from order page",
  "icons": {
    "16": "icon_S_16.png",
    "32": "icon_S_32.png",
    "96": "icon_S_96.png",
    "128": "icon_s_128.png"
  },
  "background": {
    "scripts": [
      "bg.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_icon": "icon_s_128.png",
    "default_title": "AliExpress Order Extractor",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://trade.aliexpress.com/*",
        "https://home.aliexpress.com/*"
      ],
      "run_at": "document_start",
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "declarativeContent"
  ]
}