zomato-spending-calculator

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

O que é zomato-spending-calculator?

zomato-spending-calculator é uma extensão do Chrome desenvolvida por Harsh Gupta, e sua principal característica é "View total amount (in rupees) you have spent till now while ordering from Zomato App".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão zomato-spending-calculator

Baixe arquivos de extensão zomato-spending-calculator no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome zomato-spending-calculator zomato-spending-calculator
ID afcccnkailehfpgfdcdifkmcmbjmjcge
URL Oficial https://chromewebstore.google.com/detail/zomato-spending-calculato/afcccnkailehfpgfdcdifkmcmbjmjcge
Descrição View total amount (in rupees) you have spent till now while ordering from Zomato App
Tamanho do Arquivo 374 KB
Contagem de Instalações 84,617
Versão Atual 1.1.5
Última Atualização 2022-10-17
Data de Publicação 2022-03-28
Classificação 3.31/5 Total de 26 Avaliações
Desenvolvedor Harsh Gupta
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/harshnitk17/zomato-spending-calculator
URL da Página de Ajuda https://github.com/harshnitk17/zomato-spending-calculator/issues
Idiomas Suportados 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\/*"
    ]
}