zomato-spending-calculator
View total amount (in rupees) you have spent till now while ordering from Zomato App
Qu'est-ce que zomato-spending-calculator ?
zomato-spending-calculator est une extension Chrome développée par Harsh Gupta, et sa fonction principale est "View total amount (in rupees) you have spent till now while ordering from Zomato App".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension zomato-spending-calculator
Téléchargez les fichiers d'extension zomato-spending-calculator au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | zomato-spending-calculator |
ID | afcccnkailehfpgfdcdifkmcmbjmjcge |
URL Officiel | https://chromewebstore.google.com/detail/zomato-spending-calculato/afcccnkailehfpgfdcdifkmcmbjmjcge |
Description | View total amount (in rupees) you have spent till now while ordering from Zomato App |
Taille du Fichier | 374 KB |
Nombre d'Installations | 84,617 |
Version Actuelle | 1.1.5 |
Dernière Mise à Jour | 2022-10-17 |
Date de Publication | 2022-03-28 |
Évaluation | 3.31/5 Total 26 Évaluations |
Développeur | Harsh Gupta |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/harshnitk17/zomato-spending-calculator |
URL de la Page d'Aide | https://github.com/harshnitk17/zomato-spending-calculator/issues |
Langues Prises en Charge | 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\/*" ] } |