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”。

擴展截圖

screenshot
screenshot

下載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 Google Maps Fuel Cost Calculator
ID konoomjcjjlpneddgfbdimghmhcbhfem
官方網址 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"
    }
}