Google Maps Fuel Cost Calculator
Estimates fuel cost of a driving journey in google maps
What is Google Maps Fuel Cost Calculator?
Google Maps Fuel Cost Calculator is a Chrome extension developed by edfagedeveloper, and its main feature is "Estimates fuel cost of a driving journey in google maps".
Extension Screenshots
Download Google Maps Fuel Cost Calculator Extension CRX File
Download Google Maps Fuel Cost Calculator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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].
Extension Basic Information
Name | Google Maps Fuel Cost Calculator |
ID | konoomjcjjlpneddgfbdimghmhcbhfem |
Official URL | https://chromewebstore.google.com/detail/google-maps-fuel-cost-cal/konoomjcjjlpneddgfbdimghmhcbhfem |
Description | Estimates fuel cost of a driving journey in google maps |
File Size | 242 KB |
Installation Count | 242 |
Current Version | 0.1.3 |
Last Updated | 2023-12-05 |
Publish Date | 2023-11-29 |
Developer | edfagedeveloper |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |