Daraz Seller Center Image Preview

Daraz Seller Center Image Preview

image preview available in both product and order page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Daraz Seller Center Image Preview",
  "description": "image preview available in both product and order page",
  "version": "1.0",
  "browser_action": {
    "default_icon": "assets/get_started32.png"
  },
  "permissions": [
    "activeTab",
    "webRequest",
    "*://*.daraz.lk/",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://sellercenter.daraz.lk/*"
      ],
      "run_at": "document_start",
      "js": [
        "content.js",
        "injected.js",
        "injected_orders.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "injected.js",
    "injected_orders.js"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}