FlyOnTime
A Chrome extension that helps you find the best time to book flights.
Vad är FlyOnTime?
FlyOnTime är en Chrome-tillägg utvecklad av Derek Fulton, och dess huvudfunktion är "A Chrome extension that helps you find the best time to book flights.".
Tilläggsskärmbilder
Ladda ner FlyOnTime-förlängningens CRX-fil
Ladda ner FlyOnTime-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This item shows users the likelihood that a flight will be delayed based on historical data
Grundläggande Information om Tillägg
Namn | FlyOnTime |
ID | mjhocoppejcanpaojgcfbojaebiegjkp |
Officiell webbadress | https://chromewebstore.google.com/detail/flyontime/mjhocoppejcanpaojgcfbojaebiegjkp |
Beskrivning | A Chrome extension that helps you find the best time to book flights. |
Filstorlek | 571 KB |
Antal Installationer | 45 |
Aktuell Version | 0.0.12 |
Senast Uppdaterad | 2024-03-02 |
Publiceringsdatum | 2023-10-20 |
Utvecklare | Derek Fulton |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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\/*" ] } ] } |