Google Maps Fuel Cost Calculator
Estimates fuel cost of a driving journey in google maps
O que é Google Maps Fuel Cost Calculator?
Google Maps Fuel Cost Calculator é uma extensão do Chrome desenvolvida por edfagedeveloper, e sua principal característica é "Estimates fuel cost of a driving journey in google maps".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Google Maps Fuel Cost Calculator
Baixe arquivos de extensão Google Maps Fuel Cost Calculator no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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].
Informações Básicas da Extensão
Nome | Google Maps Fuel Cost Calculator |
ID | konoomjcjjlpneddgfbdimghmhcbhfem |
URL Oficial | https://chromewebstore.google.com/detail/google-maps-fuel-cost-cal/konoomjcjjlpneddgfbdimghmhcbhfem |
Descrição | Estimates fuel cost of a driving journey in google maps |
Tamanho do Arquivo | 242 KB |
Contagem de Instalações | 242 |
Versão Atual | 0.1.3 |
Última Atualização | 2023-12-05 |
Data de Publicação | 2023-11-29 |
Desenvolvedor | edfagedeveloper |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |