Google Maps Fuel Cost Calculator

Estimates fuel cost of a driving journey in google maps

Co je Google Maps Fuel Cost Calculator?

Google Maps Fuel Cost Calculator je rozšíření Chrome vyvinuté edfagedeveloper, a jeho hlavní funkcí je „Estimates fuel cost of a driving journey in google maps“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Google Maps Fuel Cost Calculator

Stáhněte si soubory rozšíření Google Maps Fuel Cost Calculator ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Google Maps Fuel Cost Calculator Google Maps Fuel Cost Calculator
ID konoomjcjjlpneddgfbdimghmhcbhfem
Oficiální URL https://chromewebstore.google.com/detail/google-maps-fuel-cost-cal/konoomjcjjlpneddgfbdimghmhcbhfem
Popis Estimates fuel cost of a driving journey in google maps
Velikost souboru 242 KB
Počet instalací 242
Aktuální Verze 0.1.3
Poslední Aktualizace 2023-12-05
Datum Vydání 2023-11-29
Vývojář edfagedeveloper
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    }
}