zomato-spending-calculator

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

什么是zomato-spending-calculator?

zomato-spending-calculator是由Harsh Gupta开发的Chrome扩展程序,该扩展的主要功能是“View total amount (in rupees) you have spent till now while ordering from Zomato App”。

扩展截图

screenshot
screenshot
screenshot

下载zomato-spending-calculator扩展crx文件

下载zomato-spending-calculator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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-calculator zomato-spending-calculator
ID afcccnkailehfpgfdcdifkmcmbjmjcge
官方URL https://chromewebstore.google.com/detail/zomato-spending-calculato/afcccnkailehfpgfdcdifkmcmbjmjcge
简介 View total amount (in rupees) you have spent till now while ordering from Zomato App
文件大小 374 KB
安装次数 84,617
当前版本 1.1.5
更新时间 2022-10-17
上架时间 2022-03-28
评分 3.31/5 共26次评分
开发者 Harsh Gupta
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/harshnitk17/zomato-spending-calculator
帮助页面URL https://github.com/harshnitk17/zomato-spending-calculator/issues
支持的语言 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\/*"
    ]
}