Airport Code Explainer

Look for IATA airport codes in a page and give them a tooltip with the full airport name.

Airport Code Explainer란 무엇입니까?

Airport Code Explainer은(는) Gilmore Davidson에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Look for IATA airport codes in a page and give them a tooltip with the full airport name."입니다.

확장 프로그램 스크린샷

screenshot

Airport Code Explainer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        People on social media will often post details of where they’re flying by just referencing airport codes. This is fine if you know which airports the (sometimes obscure) codes refer to. This extension finds any airport codes in the text of the current page, and adds a tooltip with the full airport name.

Press the plane icon to add the tooltips when needed. The extension doesn’t run automatically on any pages as there are too many false positives for common abbreviations (such as ATM and PDF).

I originally made this just to be lazy when I’m looking at Twitter, so it’s very simple at the moment. I’m open to suggestions for improving the extension.

• Code is open source at https://github.com/gilmoreorless/convert-airport-codes
• Airport data provided in the Public Domain by OurAirports: http://ourairports.com/data/
• Icon from EmojiOne, licensed CC-BY 4.0: http://emojione.com/                    

확장 프로그램 기본 정보

이름 Airport Code Explainer Airport Code Explainer
ID mceehpfaopbngcflhlgkabgjonnngmjf
공식 URL https://chromewebstore.google.com/detail/airport-code-explainer/mceehpfaopbngcflhlgkabgjonnngmjf
설명 Look for IATA airport codes in a page and give them a tooltip with the full airport name.
파일 크기 179 KB
설치 횟수 259
현재 버전 1.1.3
최근 업데이트 2020-12-15
출시 날짜 2019-03-17
평점 5.00/5 총 2 개의 평점
개발자 Gilmore Davidson
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/gilmoreorless/convert-airport-codes
도움말 페이지 URL https://github.com/gilmoreorless/convert-airport-codes
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Airport Code Explainer",
    "short_name": "Airport Codes",
    "version": "1.1.3",
    "manifest_version": 2,
    "description": "Look for IATA airport codes in a page and give them a tooltip with the full airport name.",
    "icons": {
        "16": "icons\/icon-16.png",
        "19": "icons\/icon-19.png",
        "32": "icons\/icon-32.png",
        "38": "icons\/icon-38.png",
        "48": "icons\/icon-48.png",
        "64": "icons\/icon-64.png",
        "96": "icons\/icon-96.png",
        "128": "icons\/icon-128.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Explain IATA airport codes"
    },
    "permissions": [
        ""
    ]
}