Google Maps Fuel Cost Calculator

Estimates fuel cost of a driving journey in google maps

Cos'è Google Maps Fuel Cost Calculator?

Google Maps Fuel Cost Calculator è un'estensione di Chrome sviluppata da edfagedeveloper, e la sua funzione principale è "Estimates fuel cost of a driving journey in google maps".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Google Maps Fuel Cost Calculator

Scarica i file di estensione Google Maps Fuel Cost Calculator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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].                    

Informazioni di Base sull'Estensione

Nome Google Maps Fuel Cost Calculator Google Maps Fuel Cost Calculator
ID konoomjcjjlpneddgfbdimghmhcbhfem
URL Ufficiale https://chromewebstore.google.com/detail/google-maps-fuel-cost-cal/konoomjcjjlpneddgfbdimghmhcbhfem
Descrizione Estimates fuel cost of a driving journey in google maps
Dimensione del File 242 KB
Conteggio Installazioni 242
Versione Corrente 0.1.3
Ultimo Aggiornamento 2023-12-05
Data di Pubblicazione 2023-11-29
Sviluppatore edfagedeveloper
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}