zomato-spending-calculator

zomato-spending-calculator

View total amount (in rupees) you have spent till now while ordering from Zomato App

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "zomato-spending-calculator",
  "description": "View total amount (in rupees) you have spent till now while ordering from Zomato App",
  "version": "1.1.5",
  "action": {
    "default_icon": {
      "16": "zomato16.png",
      "24": "zomato24.png",
      "32": "zomato32.png",
      "48": "zomato48.png",
      "128": "zomato128.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "zomato16.png",
    "24": "zomato24.png",
    "32": "zomato32.png",
    "48": "zomato48.png",
    "128": "zomato128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.zomato.com/*"
      ],
      "js": [
        "js/vendor.js",
        "js/content_script.js"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "storage",
    "cookies"
  ],
  "host_permissions": [
    "*://*.zomato.com/*"
  ]
}