zomato-spending-calculator
View total amount (in rupees) you have spent till now while ordering from Zomato App
zomato-spending-calculator क्या है?
zomato-spending-calculator Harsh Gupta द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "View total amount (in rupees) you have spent till now while ordering from Zomato App"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में zomato-spending-calculator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | zomato-spending-calculator |
ID | afcccnkailehfpgfdcdifkmcmbjmjcge |
आधिकारिक URL | https://chromewebstore.google.com/detail/zomato-spending-calculato/afcccnkailehfpgfdcdifkmcmbjmjcge |
विवरण | View total amount (in rupees) you have spent till now while ordering from Zomato App |
फ़ाइल का आकार | 374 KB |
स्थापना संख्या | 84,617 |
वर्तमान संस्करण | 1.1.5 |
अंतिम अपडेट | 2022-10-17 |
प्रकाशन तिथि | 2022-03-28 |
रेटिंग | 3.31/5 कुल 26 रेटिंग्स |
डेवलपर | Harsh Gupta |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/harshnitk17/zomato-spending-calculator |
सहायता पृष्ठ URL | https://github.com/harshnitk17/zomato-spending-calculator/issues |
समर्थित भाषाएँ | 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\/*" ] } |