zomato-spending-calculator

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

Co to jest zomato-spending-calculator?

zomato-spending-calculator to rozszerzenie Chrome opracowane przez Harsh Gupta, a jego główną funkcją jest „View total amount (in rupees) you have spent till now while ordering from Zomato App”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia zomato-spending-calculator

Pobierz pliki rozszerzeń zomato-spending-calculator w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa zomato-spending-calculator zomato-spending-calculator
ID afcccnkailehfpgfdcdifkmcmbjmjcge
Oficjalny URL https://chromewebstore.google.com/detail/zomato-spending-calculato/afcccnkailehfpgfdcdifkmcmbjmjcge
Opis View total amount (in rupees) you have spent till now while ordering from Zomato App
Rozmiar pliku 374 KB
Liczba instalacji 84,617
Aktualna Wersja 1.1.5
Ostatnia Aktualizacja 2022-10-17
Data Publikacji 2022-03-28
Ocena 3.31/5 Łącznie 26 Oceny
Deweloper Harsh Gupta
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/harshnitk17/zomato-spending-calculator
Adres URL Strony Pomocy https://github.com/harshnitk17/zomato-spending-calculator/issues
Obsługiwane Języki 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\/*"
    ]
}