FlyOnTime

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

Co to jest FlyOnTime?

FlyOnTime to rozszerzenie Chrome opracowane przez Derek Fulton, a jego główną funkcją jest „A Chrome extension that helps you find the best time to book flights.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia FlyOnTime

Pobierz pliki rozszerzeń FlyOnTime w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa FlyOnTime FlyOnTime
ID mjhocoppejcanpaojgcfbojaebiegjkp
Oficjalny URL https://chromewebstore.google.com/detail/flyontime/mjhocoppejcanpaojgcfbojaebiegjkp
Opis A Chrome extension that helps you find the best time to book flights.
Rozmiar pliku 571 KB
Liczba instalacji 45
Aktualna Wersja 0.0.12
Ostatnia Aktualizacja 2024-03-02
Data Publikacji 2023-10-20
Deweloper Derek Fulton
E-mail derek@fulton.consulting
Typ Płatności free
Obsługiwane Języki 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\/*"
            ]
        }
    ]
}