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
公式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
Eメール [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"
    }
}