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" ] } |