FlyOnTime

A Chrome extension that helps you find the best time to book flights.

FlyOnTimeคืออะไร?

FlyOnTime เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Derek Fulton และคุณลักษณะหลักของมันคือ "A Chrome extension that helps you find the best time to book flights."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย FlyOnTime

ดาวน์โหลดไฟล์ส่วนขยาย FlyOnTime ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This item shows users the likelihood that a flight will be delayed based on historical data                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ FlyOnTime FlyOnTime
ID mjhocoppejcanpaojgcfbojaebiegjkp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/flyontime/mjhocoppejcanpaojgcfbojaebiegjkp
คำอธิบาย A Chrome extension that helps you find the best time to book flights.
ขนาดไฟล์ 571 KB
จำนวนการติดตั้ง 45
เวอร์ชันปัจจุบัน 0.0.12
อัปเดตครั้งล่าสุด 2024-03-02
วันที่เผยแพร่ 2023-10-20
ผู้พัฒนา Derek Fulton
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "FlyOnTime",
    "description": "A Chrome extension that helps you find the best time to book flights.",
    "version": "0.0.12",
    "icons": {
        "16": "logo\/logo-16.png",
        "48": "logo\/logo-48.png",
        "128": "logo\/logo-128.png"
    },
    "options_page": "settings\/settings.html",
    "action": {
        "default_title": "FlyOnTime",
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:google.com\/travel\/flights\/*"
    ],
    "background": {
        "service_worker": "service-worker.js"
    },
    "content_scripts": [
        {
            "js": [
                "d3.v7.min.js",
                "foreground.js"
            ],
            "css": [
                "foreground.css"
            ],
            "matches": [
                "https:\/\/www.google.com\/travel\/flights\/*"
            ]
        }
    ]
}