Airport ID Expander
Inserts info popups about airport identifiers found on web pages
Qu'est-ce que Airport ID Expander ?
Airport ID Expander est une extension Chrome développée par JPR, et sa fonction principale est "Inserts info popups about airport identifiers found on web pages".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Airport ID Expander
Téléchargez les fichiers d'extension Airport ID Expander au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | ondlcpahkdeagmboeeodfjfclajhmgaj |
URL Officiel | https://chrome.google.com/webstore/detail/airport-id-expander/ondlcpahkdeagmboeeodfjfclajhmgaj |
Description | Inserts info popups about airport identifiers found on web pages |
Taille du Fichier | 15.61 KB |
Nombre d'Installations | 36 |
Version Actuelle | 2.1 |
Dernière Mise à Jour | 2014-02-28 |
Date de Publication | 2014-02-28 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | JPR |
Type de Paiement | free |
Site Web de l'Extension | http://jpr.pw/extensions/airportidexpander/Chrome/about.html |
Langues Prises en Charge | 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" ] } |