FlyOnTime

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

Apa itu FlyOnTime?

FlyOnTime adalah ekstensi Chrome yang dikembangkan oleh Derek Fulton, dan fitur utamanya adalah "A Chrome extension that helps you find the best time to book flights.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi FlyOnTime

Unduh file ekstensi FlyOnTime dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama FlyOnTime FlyOnTime
ID mjhocoppejcanpaojgcfbojaebiegjkp
URL Resmi https://chromewebstore.google.com/detail/flyontime/mjhocoppejcanpaojgcfbojaebiegjkp
Deskripsi A Chrome extension that helps you find the best time to book flights.
Ukuran File 571 KB
Jumlah Instalasi 45
Versi Saat Ini 0.0.12
Terakhir Diperbarui 2024-03-02
Tanggal Publikasi 2023-10-20
Pengembang Derek Fulton
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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\/*"
            ]
        }
    ]
}