Google Maps Fuel Cost Calculator
Estimates fuel cost of a driving journey in google maps
Hvad er Google Maps Fuel Cost Calculator?
Google Maps Fuel Cost Calculator er en Chrome-udvidelse udviklet af edfagedeveloper, og dens hovedfunktion er "Estimates fuel cost of a driving journey in google maps".
Udvidelsesskærmbilleder
Download Google Maps Fuel Cost Calculator-udvidelses-CRX-fil
Download Google Maps Fuel Cost Calculator-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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].
Grundlæggende oplysninger om udvidelsen
Navn | Google Maps Fuel Cost Calculator |
ID | konoomjcjjlpneddgfbdimghmhcbhfem |
Officiel URL | https://chromewebstore.google.com/detail/google-maps-fuel-cost-cal/konoomjcjjlpneddgfbdimghmhcbhfem |
Beskrivelse | Estimates fuel cost of a driving journey in google maps |
Filstørrelse | 242 KB |
Antal Installationer | 242 |
Nuværende Version | 0.1.3 |
Senest Opdateret | 2023-12-05 |
Udgivelsesdato | 2023-11-29 |
Udvikler | edfagedeveloper |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" } } |