Examine source code of Lazada Scraper

Inspect and view changes in Lazada Scraper source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Lazada Scraper",
  "description": "Lazada scraper - easy data extraction tools of product, price, image",
  "version": "1.0",
  "icons": {
    "48": "icon.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "permissions": [
    "activeTab",
    "storage",
    "scripting",
    "downloads"
  ],
  "host_permissions": [
    "https://*.lazada.com/*",
    "https://*.lazada.sg/*",
    "https://*.lazada.co.id/*",
    "https://*.lazada.com.my/*",
    "https://*.lazada.co.th/*",
    "https://*.lazada.vn/*",
    "https://*.lazada.com.ph/*"
  ]
}