zomato-spending's

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

Что такое zomato-spending's?

zomato-spending's - это расширение Chrome, разработанное Jay Barot, и его основная функция - "View total amount (in rupees) you have spent till now while ordering from Zomato App".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения zomato-spending's

Скачайте файлы расширений zomato-spending's в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        View total amount (in rupees) you have spent till now while ordering from Zomato App
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's zomato-spending's
ID njdmkoeealmekkbpfmgcjdfnocefgpcd
Официальный URL https://chromewebstore.google.com/detail/zomato-spendings/njdmkoeealmekkbpfmgcjdfnocefgpcd
Описание View total amount (in rupees) you have spent till now while ordering from Zomato App
Размер файла 374 KB
Количество установок 84
Текущая Версия 1.1.5
Последнее Обновление 2022-10-24
Дата публикации 2022-10-24
Разработчик Jay Barot
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.jaybarot.live/
URL страницы помощи https://www.jaybarot.live/privacy.html
URL страницы политики конфиденциальности https://www.jaybarot.live/privacy.html
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "zomato-spending's",
    "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\/*"
    ]
}