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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Look for IATA airport codes in a page and give them a tooltip with the full airport name."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Airport Code Explainer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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": [
        ""
    ]
}