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
Eメール [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\/*"
    ]
}