Schiphol Flights

This extension lets you lookup your flight's status if departing or arriving at Amsterdam Airport Schiphol (AMS).

Schiphol Flightsとは何ですか?

Schiphol Flightsはhttps://www.schipholapp.nlによって開発されたChromeの拡張機能で、その主な機能は「This extension lets you lookup your flight's status if departing or arriving at Amsterdam Airport Schiphol (AMS).」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Schiphol Flights拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Lookup your flight by entering a city name, flight number or time. Browse detailed information including gates, desks and luggage belts.

You can even get basic notifications when your flight's status changes, so you can take action if flight changes occur. Even before the pilot knows.                    

拡張機能の基本情報

名前 Schiphol Flights Schiphol Flights
ID ckeebcpkgdfbkjmdefkghblncbamcnko
公式URL https://chromewebstore.google.com/detail/schiphol-flights/ckeebcpkgdfbkjmdefkghblncbamcnko
説明 This extension lets you lookup your flight's status if departing or arriving at Amsterdam Airport Schiphol (AMS).
ファイルサイズ 226 KB
インストール数 198
現在のバージョン 1.3.1
最終更新日 2015-01-06
公開日 2015-01-06
評価 3.40/5 合計 5 レビュー
開発者 https://www.schipholapp.nl
支払い方法 free
拡張機能のウェブサイト http://www.schipholapp.nl/nl/chrome_extension
ヘルプページのURL http://www.schipholapp.nl/nl/contact
対応言語 en,nl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "short_name": "Schiphol",
    "version": "1.3.1",
    "manifest_version": 2,
    "default_locale": "en",
    "description": "__MSG_extensionDescription__",
    "homepage_url": "http:\/\/www.schipholapp.nl",
    "icons": {
        "16": "icons\/Schiphol_icon_16.png",
        "48": "icons\/Schiphol_icon_48.png",
        "128": "icons\/Schiphol_icon_128.png"
    },
    "permissions": [
        "http:\/\/api.schipholapp.nl\/*\/",
        "notifications",
        "background",
        "alarms",
        "storage"
    ],
    "background": {
        "page": "src\/bg\/background.html"
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/Schiphol_icon_19.png",
            "38": "icons\/Schiphol_icon_38.png"
        },
        "default_title": "Schiphol Flights",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/api.schipholapp.nl\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "https:\/\/api.schipholapp.nl\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}