Spending Calculator for Swiggy™ and Zomato™

Spending Calculator for Swiggy™ and Zomato™

Use this extension to calculate total spending on Swiggy™ and Zomato™

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "0.0.1",
  "name": "Spending Calculator for Swiggyâ„¢ and Zomatoâ„¢",
  "description": "Use this extension to calculate total spending on Swiggyâ„¢ and Zomatoâ„¢",
  "background": {
    "service_worker": "background/background.js"
  },
  "action": {
    "default_popup": "index.html",
    "default_icon": {
      "16": "Icons/Icon 16.png",
      "32": "Icons/Icon 32.png",
      "64": "Icons/Icon 64.png",
      "128": "Icons/Icon 128.png",
      "2000": "Icons/Icon 2000.png"
    }
  },
  "icons": {
    "16": "Icons/Icon 16.png",
    "32": "Icons/Icon 32.png",
    "64": "Icons/Icon 64.png",
    "128": "Icons/Icon 128.png",
    "2000": "Icons/Icon 2000.png"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/contents.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "activeTab",
    "notifications"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}