Google Maps Fuel Cost Calculator
Estimates fuel cost of a driving journey in google maps
什么是Google Maps Fuel Cost Calculator?
Google Maps Fuel Cost Calculator是由edfagedeveloper开发的Chrome扩展程序,该扩展的主要功能是“Estimates fuel cost of a driving journey in google maps”。
扩展截图
下载Google Maps Fuel Cost Calculator扩展crx文件
下载Google Maps Fuel Cost Calculator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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].
扩展基本信息
名称 | Google Maps Fuel Cost Calculator |
ID | konoomjcjjlpneddgfbdimghmhcbhfem |
官方URL | https://chromewebstore.google.com/detail/google-maps-fuel-cost-cal/konoomjcjjlpneddgfbdimghmhcbhfem |
简介 | Estimates fuel cost of a driving journey in google maps |
文件大小 | 242 KB |
安装次数 | 242 |
当前版本 | 0.1.3 |
更新时间 | 2023-12-05 |
上架时间 | 2023-11-29 |
开发者 | edfagedeveloper |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" } } |