zomato-spending-calculator

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

Τι είναι το zomato-spending-calculator;

Το zomato-spending-calculator είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Harsh Gupta, και η κύρια λειτουργία του είναι "View total amount (in rupees) you have spent till now while ordering from Zomato App".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης zomato-spending-calculator

Λήψη αρχείων επέκτασης 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\/*"
    ]
}