zomato-spending-calculator
View total amount (in rupees) you have spent till now while ordering from Zomato App
Was ist zomato-spending-calculator?
zomato-spending-calculator ist eine Chrome-Erweiterung, die von Harsh Gupta entwickelt wurde, und ihr Hauptmerkmal ist "View total amount (in rupees) you have spent till now while ordering from Zomato App".
Erweiterungsscreenshots
zomato-spending-calculator-Erweiterungs-CRX-Datei herunterladen
Laden Sie zomato-spending-calculator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Chrome Extension for calculating the total amount of money(in different currencies) spent while ordering from Zomato App/Website. Extension has options for you to select for what time period you want to calculate the total amount of money spent. (e.g. This Month, This Year or the whole history). If you spend on this website using more than one currency then the extension will separate out your spending between different currencies.
Grundlegende Informationen zur Erweiterung
Name | zomato-spending-calculator |
ID | afcccnkailehfpgfdcdifkmcmbjmjcge |
Offizielle URL | https://chromewebstore.google.com/detail/zomato-spending-calculato/afcccnkailehfpgfdcdifkmcmbjmjcge |
Beschreibung | View total amount (in rupees) you have spent till now while ordering from Zomato App |
Dateigröße | 374 KB |
Installationsanzahl | 84,617 |
Aktuelle Version | 1.1.5 |
Letztes Update | 2022-10-17 |
Veröffentlichungsdatum | 2022-03-28 |
Bewertung | 3.31/5 Insgesamt 26 Bewertungen |
Entwickler | Harsh Gupta |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/harshnitk17/zomato-spending-calculator |
Hilfeseite URL | https://github.com/harshnitk17/zomato-spending-calculator/issues |
Unterstützte Sprachen | en |
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\/*" ] } |