Airport ID Expander

Inserts info popups about airport identifiers found on web pages

Co to jest Airport ID Expander?

Airport ID Expander to rozszerzenie Chrome opracowane przez JPR, a jego główną funkcją jest „Inserts info popups about airport identifiers found on web pages”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Airport ID Expander

Pobierz pliki rozszerzeń Airport ID Expander w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Aviation enthusiasts, this one's for you.

This highly user-configurable extension finds 4-character airport identifiers (like KJFK, CYYZ, EGLL, etc) on webpages and inserts information about their location and distance from you.

With the settings pane, you can choose between inline information and hovertext.  The link inserted is also customizable with colors (pick one or have it blend with the page) and location - you can even provide a custom link using the available formatting.                    

Podstawowe informacje o rozszerzeniu

Nazwa Airport ID Expander Airport ID Expander
ID ondlcpahkdeagmboeeodfjfclajhmgaj
Oficjalny URL https://chrome.google.com/webstore/detail/airport-id-expander/ondlcpahkdeagmboeeodfjfclajhmgaj
Opis Inserts info popups about airport identifiers found on web pages
Rozmiar pliku 15.61 KB
Liczba instalacji 36
Aktualna Wersja 2.1
Ostatnia Aktualizacja 2014-02-28
Data Publikacji 2014-02-28
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper JPR
Typ Płatności free
Strona Rozszerzenia http://jpr.pw/extensions/airportidexpander/Chrome/about.html
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Airport ID Expander",
    "description": "Inserts info popups about airport identifiers found on web pages",
    "version": "2.1",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "xpathUtils.js",
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        },
        {
            "matches": [
                "http:\/\/skyvector.com\/*"
            ],
            "js": [
                "skyvector.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon-48.png"
    },
    "homepage_url": "http:\/\/jpr.pw\/extensions\/airportidexpander\/Chrome\/about.html",
    "permissions": [
        "tabs",
        "storage",
        "geolocation"
    ]
}