Flight Rules Finder
Finds rules for Google Flights on Matrix - ITA
Flight Rules Finder란 무엇입니까?
Flight Rules Finder은(는) luxuryflightclub에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Finds rules for Google Flights on Matrix - ITA"입니다.
확장 프로그램 스크린샷
Flight Rules Finder 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is a tool I use for the Luxury Flight Club. It will copy your Google Flights search into a Matrix search. After that, you have to click through yourself to find the rules. How this extension works: • Use Google Flights and select your departing flight and returning flight (or just 1 flight if you want to search an one-way itinerary) • A popup in the top right will appear • Click on ‘Search the Matrix’ • A new tab will open, and the converter will automatically fill your search data in the Matrix It will copy the following search settings: • Your departing airport • Your returning airport • One-way or roundtrip • It works with all currencies • It works with all flight classes Note: the Luxury Flight Club is not affiliated with Google Flights or ITA Matrix.
확장 프로그램 기본 정보
이름 | |
ID | odpilgcmandfflccbmfhcioninamdoba |
공식 URL | https://chrome.google.com/webstore/detail/flight-rules-finder/odpilgcmandfflccbmfhcioninamdoba |
설명 | Finds rules for Google Flights on Matrix - ITA |
파일 크기 | 30 KB |
설치 횟수 | 88 |
현재 버전 | 1.12 |
최근 업데이트 | 2021-04-05 |
출시 날짜 | 2021-04-04 |
평점 | 1.00/5 총 1 개의 평점 |
개발자 | luxuryflightclub |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://luxuryflightclub.com/ |
개인정보 보호 정책 페이지 URL | https://luxuryflightclub.com/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Flight Rules Finder", "version": "1.12", "description": "Finds rules for Google Flights on Matrix - ITA", "manifest_version": 2, "permissions": [ "https:\/\/matrix.itasoftware.com\/*", "https:\/\/www.google.com\/*", "https:\/\/www.google.co.uk\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.google.com\/flights*", "https:\/\/www.google.com\/travel\/flights*", "https:\/\/www.google.co.uk\/flights*", "https:\/\/www.google.co.uk\/travel\/flights*" ], "css": [ "src\/roboto.css", "src\/style.css" ], "js": [ "src\/libs\/moment.min.js", "src\/utils.js", "src\/google-flights.js" ], "all_frames": true, "run_at": "document_idle" } ], "background": { "scripts": [ ".\/src\/utils.js", ".\/src\/background.js" ], "persistent": false }, "web_accessible_resources": [ "images\/**\/*.png" ], "browser_action": { "default_icon": { "16": ".\/images\/icons\/icon.png", "48": ".\/images\/icons\/icon.png" } }, "icons": { "16": ".\/images\/icons\/icon.png", "48": ".\/images\/icons\/icon.png", "128": ".\/images\/icons\/icon.png" } } |