FlyOnTime

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

Qu'est-ce que FlyOnTime ?

FlyOnTime est une extension Chrome développée par Derek Fulton, et sa fonction principale est "A Chrome extension that helps you find the best time to book flights.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension FlyOnTime

Téléchargez les fichiers d'extension FlyOnTime au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom FlyOnTime FlyOnTime
ID mjhocoppejcanpaojgcfbojaebiegjkp
URL Officiel https://chromewebstore.google.com/detail/flyontime/mjhocoppejcanpaojgcfbojaebiegjkp
Description A Chrome extension that helps you find the best time to book flights.
Taille du Fichier 571 KB
Nombre d'Installations 45
Version Actuelle 0.0.12
Dernière Mise à Jour 2024-03-02
Date de Publication 2023-10-20
Développeur Derek Fulton
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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\/*"
            ]
        }
    ]
}