FlyOnTime
A Chrome extension that helps you find the best time to book flights.
ما هو FlyOnTime؟
FlyOnTime هو إضافة Chrome تم تطويرها بواسطة Derek Fulton، والميزة الرئيسية لها هي "A Chrome extension that helps you find the best time to book flights.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة FlyOnTime
قم بتنزيل ملفات الامتداد FlyOnTime بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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\/*" ] } ] } |