Google Maps Fuel Cost Calculator

Estimates fuel cost of a driving journey in google maps

Co to jest Google Maps Fuel Cost Calculator?

Google Maps Fuel Cost Calculator to rozszerzenie Chrome opracowane przez edfagedeveloper, a jego główną funkcją jest „Estimates fuel cost of a driving journey in google maps”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Google Maps Fuel Cost Calculator

Pobierz pliki rozszerzeń Google Maps Fuel Cost Calculator w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Google Maps Fuel Cost Calculator Google Maps Fuel Cost Calculator
ID konoomjcjjlpneddgfbdimghmhcbhfem
Oficjalny URL https://chromewebstore.google.com/detail/google-maps-fuel-cost-cal/konoomjcjjlpneddgfbdimghmhcbhfem
Opis Estimates fuel cost of a driving journey in google maps
Rozmiar pliku 242 KB
Liczba instalacji 242
Aktualna Wersja 0.1.3
Ostatnia Aktualizacja 2023-12-05
Data Publikacji 2023-11-29
Deweloper edfagedeveloper
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}