Airport ID Expander
Inserts info popups about airport identifiers found on web pages
什么是Airport ID Expander?
Airport ID Expander是由JPR开发的Chrome扩展程序,该扩展的主要功能是“Inserts info popups about airport identifiers found on web pages”。
扩展截图
下载Airport ID Expander扩展crx文件
下载Airport ID Expander扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | |
ID | ondlcpahkdeagmboeeodfjfclajhmgaj |
官方URL | https://chrome.google.com/webstore/detail/airport-id-expander/ondlcpahkdeagmboeeodfjfclajhmgaj |
简介 | Inserts info popups about airport identifiers found on web pages |
文件大小 | 15.61 KB |
安装次数 | 36 |
当前版本 | 2.1 |
更新时间 | 2014-02-28 |
上架时间 | 2014-02-28 |
评分 | 5.00/5 共1次评分 |
开发者 | JPR |
付费类型 | free |
扩展官网 | http://jpr.pw/extensions/airportidexpander/Chrome/about.html |
支持的语言 | 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" ] } |