FlyOnTime
A Chrome extension that helps you find the best time to book flights.
What is FlyOnTime?
FlyOnTime is a Chrome extension developed by Derek Fulton, and its main feature is "A Chrome extension that helps you find the best time to book flights.".
Extension Screenshots
Download FlyOnTime Extension CRX File
Download FlyOnTime extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This item shows users the likelihood that a flight will be delayed based on historical data
Extension Basic Information
Name | FlyOnTime |
ID | mjhocoppejcanpaojgcfbojaebiegjkp |
Official URL | https://chromewebstore.google.com/detail/flyontime/mjhocoppejcanpaojgcfbojaebiegjkp |
Description | A Chrome extension that helps you find the best time to book flights. |
File Size | 571 KB |
Installation Count | 45 |
Current Version | 0.0.12 |
Last Updated | 2024-03-02 |
Publish Date | 2023-10-20 |
Developer | Derek Fulton |
[email protected] | |
Payment Type | free |
Supported Languages | 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\/*" ] } ] } |