FlyOnTime
A Chrome extension that helps you find the best time to book flights.
Wat is FlyOnTime?
FlyOnTime is een Chrome-extensie ontwikkeld door Derek Fulton, en de belangrijkste functie is "A Chrome extension that helps you find the best time to book flights.".
Extensie Screenshots
Download het CRX-bestand van de extensie FlyOnTime
Download FlyOnTime-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This item shows users the likelihood that a flight will be delayed based on historical data Basisinformatie over de Extensie
| Naam | |
| ID | mjhocoppejcanpaojgcfbojaebiegjkp |
| Officiële URL | https://chromewebstore.google.com/detail/flyontime/mjhocoppejcanpaojgcfbojaebiegjkp |
| Beschrijving | A Chrome extension that helps you find the best time to book flights. |
| Bestandsgrootte | 571 KB |
| Aantal Installaties | 45 |
| Huidige Versie | 0.0.12 |
| Laatst Bijgewerkt | 2024-03-02 |
| Publicatiedatum | 2023-10-20 |
| Ontwikkelaar | Derek Fulton |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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\/*"
]
}
]
} | |