Flight Scan - Google Flights Tool
Searches travel aggregate sites for the same Google Flight.
Flight Scan - Google Flights Tool란 무엇입니까?
Flight Scan - Google Flights Tool은(는) PlaneSurfers에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Searches travel aggregate sites for the same Google Flight."입니다.
확장 프로그램 스크린샷
Flight Scan - Google Flights Tool 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Click on the icon and you will be presented with travel aggregate websites that you can toggle on or off, choosing whether to see a flight comparison from that site or not. When you go to Google Flights, find a flight and click on that particular flight, a popup window at the top right of your browser will appear with a button that says "Compare". If you click this button, it will create a new tab for each site you have toggled ON and it will automatically search each site for the same flight you have up on Google Flights.
확장 프로그램 기본 정보
이름 | Flight Scan - Google Flights Tool |
ID | adiknbgmocakdciplkdllicedghomcbb |
공식 URL | https://chromewebstore.google.com/detail/flight-scan-google-flight/adiknbgmocakdciplkdllicedghomcbb |
설명 | Searches travel aggregate sites for the same Google Flight. |
파일 크기 | 97.88 KB |
설치 횟수 | 56 |
현재 버전 | 1.0.0 |
최근 업데이트 | 2019-08-04 |
출시 날짜 | 2019-08-03 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | PlaneSurfers |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://planesurfers.com/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "manifest_version": 2, "name": "Flight Scan - Google Flights Tool", "description": "Searches travel aggregate sites for the same Google Flight.", "version": "1.0.0", "icons": { "128": "img\/icon\/icon128.png", "16": "img\/icon\/icon16.png", "32": "img\/icon\/icon32.png", "48": "img\/icon\/icon48.png" }, "browser_action": { "default_icon": "img\/icon\/icon32.png", "default_popup": "html\/settings.html" }, "background": { "scripts": [ "js\/defaultStorage.js", "js\/background.js" ] }, "content_scripts": [ { "all_frames": true, "js": [ "js\/injectGeneral.js" ], "matches": [ "https:\/\/www.google.com\/flights*", "https:\/\/www.google.com\/travel\/flights*" ], "run_at": "document_end" } ], "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com\/; object-src 'self'", "permissions": [ "storage", "https:\/\/www.google.com\/flights*", "https:\/\/www.google.com\/travel\/flights*" ], "short_name": "Flight Scan", "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "web_accessible_resources": [ "js\/*", "html\/*", "css\/*", "fonts\/*", "img\/*" ] } |