FlyOnTime

A Chrome extension that helps you find the best time to book flights.

FlyOnTime là gì?

FlyOnTime là một tiện ích mở rộng Chrome được phát triển bởi Derek Fulton, và tính năng chính của nó là "A Chrome extension that helps you find the best time to book flights.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng FlyOnTime

Tải xuống các tệp mở rộng FlyOnTime dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This item shows users the likelihood that a flight will be delayed based on historical data                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên FlyOnTime FlyOnTime
ID mjhocoppejcanpaojgcfbojaebiegjkp
URL Chính Thức https://chromewebstore.google.com/detail/flyontime/mjhocoppejcanpaojgcfbojaebiegjkp
Mô tả A Chrome extension that helps you find the best time to book flights.
Kích Thước Tệp 571 KB
Số Lần Cài Đặt 45
Phiên Bản Hiện Tại 0.0.12
Cập Nhật Lần Cuối 2024-03-02
Ngày Phát Hành 2023-10-20
Nhà Phát Triển Derek Fulton
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}