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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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

확장 프로그램 기본 정보

이름 FlyOnTime 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\/*"
            ]
        }
    ]
}