Google Maps Fuel Cost Calculator

Estimates fuel cost of a driving journey in google maps

Τι είναι το Google Maps Fuel Cost Calculator;

Το Google Maps Fuel Cost Calculator είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον edfagedeveloper, και η κύρια λειτουργία του είναι "Estimates fuel cost of a driving journey in google maps".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Google Maps Fuel Cost Calculator

Λήψη αρχείων επέκτασης Google Maps Fuel Cost Calculator σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Pin the extension, click on the extension icon in the toolbar, input your vehicle data, and your fuel costs will appear below driving distances in Google Maps. 

This extension is still being actively developed, so if you find a bug or want to request a feature please get in touch with me at [email protected].                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Google Maps Fuel Cost Calculator Google Maps Fuel Cost Calculator
ID konoomjcjjlpneddgfbdimghmhcbhfem
Επίσημο URL https://chromewebstore.google.com/detail/google-maps-fuel-cost-cal/konoomjcjjlpneddgfbdimghmhcbhfem
Περιγραφή Estimates fuel cost of a driving journey in google maps
Μέγεθος Αρχείου 242 KB
Αριθμός Εγκαταστάσεων 242
Τρέχουσα Έκδοση 0.1.3
Τελευταία Ενημέρωση 2023-12-05
Ημερομηνία Δημοσίευσης 2023-11-29
Προγραμματιστής edfagedeveloper
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Google Maps Fuel Cost Calculator",
    "version": "0.1.3",
    "description": "Estimates fuel cost of a driving journey in google maps",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/www.google.com\/maps\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/maps\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "service-worker.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "128icon.png"
    }
}