zomato-spending-calculator

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

Vad är zomato-spending-calculator?

zomato-spending-calculator är en Chrome-tillägg utvecklad av Harsh Gupta, och dess huvudfunktion är "View total amount (in rupees) you have spent till now while ordering from Zomato App".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner zomato-spending-calculator-förlängningens CRX-fil

Ladda ner zomato-spending-calculator-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn zomato-spending-calculator zomato-spending-calculator
ID afcccnkailehfpgfdcdifkmcmbjmjcge
Officiell webbadress https://chromewebstore.google.com/detail/zomato-spending-calculato/afcccnkailehfpgfdcdifkmcmbjmjcge
Beskrivning View total amount (in rupees) you have spent till now while ordering from Zomato App
Filstorlek 374 KB
Antal Installationer 84,617
Aktuell Version 1.1.5
Senast Uppdaterad 2022-10-17
Publiceringsdatum 2022-03-28
Betyg 3.31/5 Totalt 26 Betyg
Utvecklare Harsh Gupta
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/harshnitk17/zomato-spending-calculator
Hjälpsida URL https://github.com/harshnitk17/zomato-spending-calculator/issues
Stödda Språk 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\/*"
    ]
}