Airport ID Expander
Inserts info popups about airport identifiers found on web pages
Airport ID Expander क्या है?
Airport ID Expander JPR द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Inserts info popups about airport identifiers found on web pages"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Airport ID Expander एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } |