Airport ID Expander

Inserts info popups about airport identifiers found on web pages

Was ist Airport ID Expander?

Airport ID Expander ist eine Chrome-Erweiterung, die von JPR entwickelt wurde, und ihr Hauptmerkmal ist "Inserts info popups about airport identifiers found on web pages".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Airport ID Expander-Erweiterungs-CRX-Datei herunterladen

Laden Sie Airport ID Expander-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Airport ID Expander Airport ID Expander
ID ondlcpahkdeagmboeeodfjfclajhmgaj
Offizielle URL https://chrome.google.com/webstore/detail/airport-id-expander/ondlcpahkdeagmboeeodfjfclajhmgaj
Beschreibung Inserts info popups about airport identifiers found on web pages
Dateigröße 15.61 KB
Installationsanzahl 36
Aktuelle Version 2.1
Letztes Update 2014-02-28
Veröffentlichungsdatum 2014-02-28
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler JPR
Zahlungsart free
Erweiterungswebsite http://jpr.pw/extensions/airportidexpander/Chrome/about.html
Unterstützte Sprachen 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"
    ]
}