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.”。

擴展截圖

screenshot

下載FlyOnTime擴展crx文件

下載FlyOnTime擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 FlyOnTime FlyOnTime
ID mjhocoppejcanpaojgcfbojaebiegjkp
官方網址 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\/*"
            ]
        }
    ]
}