FlyOnTime

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

O que é FlyOnTime?

FlyOnTime é uma extensão do Chrome desenvolvida por Derek Fulton, e sua principal característica é "A Chrome extension that helps you find the best time to book flights.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão FlyOnTime

Baixe arquivos de extensão FlyOnTime no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome FlyOnTime FlyOnTime
ID mjhocoppejcanpaojgcfbojaebiegjkp
URL Oficial https://chromewebstore.google.com/detail/flyontime/mjhocoppejcanpaojgcfbojaebiegjkp
Descrição A Chrome extension that helps you find the best time to book flights.
Tamanho do Arquivo 571 KB
Contagem de Instalações 45
Versão Atual 0.0.12
Última Atualização 2024-03-02
Data de Publicação 2023-10-20
Desenvolvedor Derek Fulton
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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\/*"
            ]
        }
    ]
}