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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
    ]
}