Google Maps Fuel Cost Calculator
Estimates fuel cost of a driving journey in google maps
Wat is Google Maps Fuel Cost Calculator?
Google Maps Fuel Cost Calculator is een Chrome-extensie ontwikkeld door edfagedeveloper, en de belangrijkste functie is "Estimates fuel cost of a driving journey in google maps".
Extensie Screenshots
Download het CRX-bestand van de extensie Google Maps Fuel Cost Calculator
Download Google Maps Fuel Cost Calculator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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].
Basisinformatie over de Extensie
Naam | Google Maps Fuel Cost Calculator |
ID | konoomjcjjlpneddgfbdimghmhcbhfem |
Officiële URL | https://chromewebstore.google.com/detail/google-maps-fuel-cost-cal/konoomjcjjlpneddgfbdimghmhcbhfem |
Beschrijving | Estimates fuel cost of a driving journey in google maps |
Bestandsgrootte | 242 KB |
Aantal Installaties | 242 |
Huidige Versie | 0.1.3 |
Laatst Bijgewerkt | 2023-12-05 |
Publicatiedatum | 2023-11-29 |
Ontwikkelaar | edfagedeveloper |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |