FlyOnTime

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

Was ist FlyOnTime?

FlyOnTime ist eine Chrome-Erweiterung, die von Derek Fulton entwickelt wurde, und ihr Hauptmerkmal ist "A Chrome extension that helps you find the best time to book flights.".

Erweiterungsscreenshots

screenshot

FlyOnTime-Erweiterungs-CRX-Datei herunterladen

Laden Sie FlyOnTime-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name FlyOnTime FlyOnTime
ID mjhocoppejcanpaojgcfbojaebiegjkp
Offizielle URL https://chromewebstore.google.com/detail/flyontime/mjhocoppejcanpaojgcfbojaebiegjkp
Beschreibung A Chrome extension that helps you find the best time to book flights.
Dateigröße 571 KB
Installationsanzahl 45
Aktuelle Version 0.0.12
Letztes Update 2024-03-02
Veröffentlichungsdatum 2023-10-20
Entwickler Derek Fulton
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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\/*"
            ]
        }
    ]
}