Swiggy Analyser

Swiggy Analyser

Analyse your recent orders from Swiggy

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Swiggy Analyser",
  "version": "1.0.0",
  "description": "Analyse your recent orders from Swiggy",
  "permissions": [
    "https://www.swiggy.com/my-account/orders"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "logo.png",
    "icons": {
      "16": "icon.png",
      "48": "icon.png",
      "128": "icon.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.swiggy.com/my-account/orders"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "manifest_version": 2
}