DarazScout

DarazScout

Gather all the data of Daraz Products at one place!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "DarazScout",
  "description": "Gather all the data of Daraz Products at one place!",
  "version": "1.0.0",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "storage"
  ],
  "background": {
    "scripts": [
      "external/jQuery-3.3.1/jquery-3.3.1.min.js",
      "assets/js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.daraz.pk/*"
      ],
      "js": [
        "external/jQuery-3.3.1/jquery-3.3.1.min.js",
        "assets/js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "*.html",
    "*.css",
    "assets/js/analytics.js",
    "*.png"
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com/analytics.js; object-src 'self'",
  "browser_action": {
    "default_title": "DarazScout - Gather all the data of Daraz Products at one place!",
    "default_icon": {
      "16": "assets/images/logo-16x16.png",
      "48": "assets/images/logo-48x48.png",
      "128": "assets/images/logo-128x128.png",
      "500": "assets/images/logo-500x500.png"
    }
  }
}