zomato-spending-calculator

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

ما هو zomato-spending-calculator؟

zomato-spending-calculator هو إضافة Chrome تم تطويرها بواسطة Harsh Gupta، والميزة الرئيسية لها هي "View total amount (in rupees) you have spent till now while ordering from Zomato App".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة zomato-spending-calculator

قم بتنزيل ملفات الامتداد zomato-spending-calculator بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 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
عنوان صفحة المساعدة 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\/*"
    ]
}