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
官方網址 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\/*"
    ]
}