zomato-spending-calculator

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

¿Qué es zomato-spending-calculator?

zomato-spending-calculator es una extensión de Chrome desarrollada por Harsh Gupta, y su función principal es "View total amount (in rupees) you have spent till now while ordering from Zomato App".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión zomato-spending-calculator

Descarga archivos de extensión zomato-spending-calculator en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre zomato-spending-calculator zomato-spending-calculator
ID afcccnkailehfpgfdcdifkmcmbjmjcge
URL Oficial https://chromewebstore.google.com/detail/zomato-spending-calculato/afcccnkailehfpgfdcdifkmcmbjmjcge
Descripción View total amount (in rupees) you have spent till now while ordering from Zomato App
Tamaño del Archivo 374 KB
Cantidad de Instalaciones 84,617
Versión Actual 1.1.5
Última Actualización 2022-10-17
Fecha de Publicación 2022-03-28
Calificación 3.31/5 Total de 26 Calificaciones
Desarrollador Harsh Gupta
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/harshnitk17/zomato-spending-calculator
URL de la Página de Ayuda https://github.com/harshnitk17/zomato-spending-calculator/issues
Idiomas Soportados 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\/*"
    ]
}