zomato-spending-calculator
View total amount (in rupees) you have spent till now while ordering from Zomato App
Hvad er zomato-spending-calculator?
zomato-spending-calculator er en Chrome-udvidelse udviklet af Harsh Gupta, og dens hovedfunktion er "View total amount (in rupees) you have spent till now while ordering from Zomato App".
Udvidelsesskærmbilleder
Download zomato-spending-calculator-udvidelses-CRX-fil
Download zomato-spending-calculator-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | zomato-spending-calculator |
ID | afcccnkailehfpgfdcdifkmcmbjmjcge |
Officiel URL | https://chromewebstore.google.com/detail/zomato-spending-calculato/afcccnkailehfpgfdcdifkmcmbjmjcge |
Beskrivelse | View total amount (in rupees) you have spent till now while ordering from Zomato App |
Filstørrelse | 374 KB |
Antal Installationer | 84,617 |
Nuværende Version | 1.1.5 |
Senest Opdateret | 2022-10-17 |
Udgivelsesdato | 2022-03-28 |
Bedømmelse | 3.31/5 Samlet 26 Bedømmelser |
Udvikler | Harsh Gupta |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/harshnitk17/zomato-spending-calculator |
Hjælpeside-URL | https://github.com/harshnitk17/zomato-spending-calculator/issues |
Understøttede Sprog | 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\/*" ] } |