Lumo

Flight data at your fingertips to help you book smarter and avoid delays.

Lumo란 무엇입니까?

Lumo은(는) https://thinklumo.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Flight data at your fingertips to help you book smarter and avoid delays."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Lumo 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Lumo helps travelers make better flight booking and rebooking decisions by displaying delay predictions, CO2 impact, and other useful data alongside flight search results. 

Lumo uses powerful machine learning algorithms to estimate the risk of delay hours to weeks before departure, accounting for various factors including historical trends, forecasted weather, air traffic control restrictions, and network connectivity effects. Users can now make more informed booking decisions by comparing itineraries by the likelihood of a delay, cancellation, or missed connection.

This version of the extension currently only works with SAP Concur's online booking tool. The extension requires you to have a Lumo account, and an SAP Concur account likely provided through your employer. If you created a Lumo account through your employer, the data you can see in the extension may be restricted or customized.                    

확장 프로그램 기본 정보

이름 Lumo Lumo
ID adghoobmlmdhdgibnmlgffklchmhklei
공식 URL https://chromewebstore.google.com/detail/lumo/adghoobmlmdhdgibnmlgffklchmhklei
설명 Flight data at your fingertips to help you book smarter and avoid delays.
파일 크기 673 KB
설치 횟수 85
현재 버전 2.8.1
최근 업데이트 2022-08-10
출시 날짜 2020-05-08
개발자 https://thinklumo.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.thinklumo.com
도움말 페이지 URL https://www.thinklumo.com/help/
개인정보 보호 정책 페이지 URL https://www.thinklumo.com/privacy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Lumo",
    "description": "Flight data at your fingertips to help you book smarter and avoid delays.",
    "version": "2.8.1",
    "homepage_url": "https:\/\/thinklumo.com\/",
    "icons": {
        "128": "icons\/lumo_logo_square_extension.png"
    },
    "action": {
        "default_title": "Lumo - Smarter Flight Data",
        "default_icon": "icons\/lumo_chrome_disconnected.png",
        "default_popup": "html\/browser.html"
    },
    "host_permissions": [
        "*:\/\/*.concursolutions.com\/*",
        "*:\/\/*.thinklumo.com\/*"
    ],
    "permissions": [
        "storage",
        "tabs"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.concursolutions.com\/travelwizard\/twAir*",
                "https:\/\/*.concursolutions.com\/travelwizard\/twHotel*"
            ],
            "js": [
                "js\/concur_search.js"
            ],
            "css": [
                "css\/content.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/*.concursolutions.com\/TravelWizard\/twShowTrip.asp*"
            ],
            "js": [
                "js\/concur_trip.js"
            ],
            "css": [
                "css\/content.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/dashboard.thinklumo.com\/*"
            ],
            "js": [
                "js\/thinklumo.js"
            ],
            "css": [
                "css\/thinklumo.css"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}