FlyOnTime
A Chrome extension that helps you find the best time to book flights.
什么是FlyOnTime?
FlyOnTime是由Derek Fulton开发的Chrome扩展程序,该扩展的主要功能是“A Chrome extension that helps you find the best time to book flights.”。
扩展截图
下载FlyOnTime扩展crx文件
下载FlyOnTime扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This item shows users the likelihood that a flight will be delayed based on historical data
扩展基本信息
名称 | FlyOnTime |
ID | mjhocoppejcanpaojgcfbojaebiegjkp |
官方URL | https://chromewebstore.google.com/detail/flyontime/mjhocoppejcanpaojgcfbojaebiegjkp |
简介 | A Chrome extension that helps you find the best time to book flights. |
文件大小 | 571 KB |
安装次数 | 45 |
当前版本 | 0.0.12 |
更新时间 | 2024-03-02 |
上架时间 | 2023-10-20 |
开发者 | Derek Fulton |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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\/*" ] } ] } |