Sellerz Store

Sellerz Store

It is used to import product from AliExpress to sellerz store and it can be used with sellerz store dropship management module.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Sellerz Store",
  "version": "1",
  "manifest_version": 2,
  "description": "It is used to import product from AliExpress to sellerz store and it can be used with sellerz store dropship management module.",
  "background": {
    "scripts": [
      "resources/js/background.js"
    ],
    "persistent": false
  },
  "icons": {
    "128": "resources/images/Icon.png"
  },
  "permissions": [
    "tabs"
  ],
  "browser_action": {
    "default_icon": "resources/images/icon-disabled.png"
  },
  "web_accessible_resources": [
    "*.png",
    "resources/js/wk_inserted.js",
    "resources/js/jquery.min.js"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.aliexpress.com/*",
        "http://*.aliexpress.com/*"
      ],
      "js": [
        "resources/js/jquery.min.js",
        "resources/js/content.js"
      ],
      "css": [
        "resources/css/dropship.css"
      ]
    }
  ]
}