Airport Code Finder
Look up airport name by selecting the 3 letter airport code on the web page. You can also search for the airport code.
Airport Code Finder란 무엇입니까?
Airport Code Finder은(는) JJ Borong에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Look up airport name by selecting the 3 letter airport code on the web page. You can also search for the airport code."입니다.
확장 프로그램 스크린샷
Airport Code Finder 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Double click or select a 3 letter airport code anywhere on the web page and it will search for the airport information.
확장 프로그램 기본 정보
이름 | |
ID | lnljiompmcllepmhnhdgnkjokbahgdcd |
공식 URL | https://chrome.google.com/webstore/detail/airport-code-finder/lnljiompmcllepmhnhdgnkjokbahgdcd |
설명 | Look up airport name by selecting the 3 letter airport code on the web page. You can also search for the airport code. |
파일 크기 | 200 KB |
설치 횟수 | 67 |
현재 버전 | 1.0.4 |
최근 업데이트 | 2013-03-30 |
출시 날짜 | 2013-03-30 |
평점 | 2.50/5 총 8 개의 평점 |
개발자 | JJ Borong |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Airport Code Finder", "description": "Look up airport name by selecting the 3 letter airport code on the web page. You can also search for the airport code.", "version": "1.0.4", "offline_enabled": false, "permissions": [ "http:\/\/*\/", "geolocation", "tabs", "debugger" ], "background": { "scripts": [ "js\/xhrproxy-min.js", "js\/background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*" ], "js": [ "js\/jquery-min.js", "js\/jquery-ui-1.10.1.custom.min.js", "js\/xhrproxy-min.js", "js\/jquery.qtip.min.js", "js\/content-min.js" ], "css": [ "css\/jquery-ui-1.10.1.custom.min.css", "css\/jquery.qtip.min.css", "css\/content.css" ], "run_at": "document_end", "all_frames": true } ], "icons": { "16": "images\/airport.png", "48": "images\/airport48.png", "128": "images\/airport128.png" }, "browser_action": { "default_popup": "airportFinder.html", "default_icon": { "19": "images\/airport24.png", "38": "images\/airport48.png" } }, "content_security_policy": "script-src 'self' https:\/\/query.yahooapis.com; object-src 'self'" } |