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)."입니다.
확장 프로그램 스크린샷
Schiphol Flights 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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" ] } ] } |