FlyOnTime
A Chrome extension that helps you find the best time to book flights.
Cos'è FlyOnTime?
FlyOnTime è un'estensione di Chrome sviluppata da Derek Fulton, e la sua funzione principale è "A Chrome extension that helps you find the best time to book flights.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione FlyOnTime
Scarica i file di estensione FlyOnTime in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This item shows users the likelihood that a flight will be delayed based on historical data Informazioni di Base sull'Estensione
| Nome | |
| ID | mjhocoppejcanpaojgcfbojaebiegjkp |
| URL Ufficiale | https://chromewebstore.google.com/detail/flyontime/mjhocoppejcanpaojgcfbojaebiegjkp |
| Descrizione | A Chrome extension that helps you find the best time to book flights. |
| Dimensione del File | 571 KB |
| Conteggio Installazioni | 45 |
| Versione Corrente | 0.0.12 |
| Ultimo Aggiornamento | 2024-03-02 |
| Data di Pubblicazione | 2023-10-20 |
| Sviluppatore | Derek Fulton |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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\/*"
]
}
]
} | |