Opencart dhgate Product Importer

Opencart dhgate Product Importer

It is used to import product from dhgate to opencart store and it can be used with webkul opencart dhgate dropship management module

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Opencart dhgate Product Importer",
  "version": "1.0.0",
  "manifest_version": 2,
  "description": "It is used to import product from dhgate to opencart store and it can be used with webkul opencart dhgate dropship management module",
  "background": {
    "scripts": [
      "resources/scripts/background.js"
    ]
  },
  "icons": {
    "128": "resources/image/icon.png"
  },
  "permissions": [
    "activeTab",
    "tabs"
  ],
  "browser_action": {
    "default_icon": "resources/image/icon-disabled.png"
  },
  "web_accessible_resources": [
    "*.png",
    "resources/scripts/jquery.min.js",
    "resources/scripts/wk_inserted.js"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.dhgate.com/*",
        "http://*.dhgate.com/*"
      ],
      "js": [
        "resources/scripts/jquery.min.js",
        "resources/scripts/content.js"
      ],
      "css": [
        "resources/css/dropship.css"
      ]
    }
  ]
}