Lumo

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

Lumo क्या है?

Lumo https://thinklumo.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Flight data at your fingertips to help you book smarter and avoid delays."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Lumo एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}