Google Maps Fuel Cost Calculator
Estimates fuel cost of a driving journey in google maps
Was ist Google Maps Fuel Cost Calculator?
Google Maps Fuel Cost Calculator ist eine Chrome-Erweiterung, die von edfagedeveloper entwickelt wurde, und ihr Hauptmerkmal ist "Estimates fuel cost of a driving journey in google maps".
Erweiterungsscreenshots
Google Maps Fuel Cost Calculator-Erweiterungs-CRX-Datei herunterladen
Laden Sie Google Maps Fuel Cost Calculator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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].
Grundlegende Informationen zur Erweiterung
Name | Google Maps Fuel Cost Calculator |
ID | konoomjcjjlpneddgfbdimghmhcbhfem |
Offizielle URL | https://chromewebstore.google.com/detail/google-maps-fuel-cost-cal/konoomjcjjlpneddgfbdimghmhcbhfem |
Beschreibung | Estimates fuel cost of a driving journey in google maps |
Dateigröße | 242 KB |
Installationsanzahl | 242 |
Aktuelle Version | 0.1.3 |
Letztes Update | 2023-12-05 |
Veröffentlichungsdatum | 2023-11-29 |
Entwickler | edfagedeveloper |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |