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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย edfagedeveloper และคุณลักษณะหลักของมันคือ "Estimates fuel cost of a driving journey in google maps"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Maps Fuel Cost Calculator

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    }
}