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ファイルをダウンロード

Lumo拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    }
}