EasyMap
Easily get directions to any address on a page!
What is EasyMap?
EasyMap is a Chrome extension developed by jchernus, and its main feature is "Easily get directions to any address on a page!".
Extension Screenshots
Download EasyMap Extension CRX File
Download EasyMap extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Simply highlight the address (for example, on Craigslist), right click, and choose where you want your directions to be from: your current location or a saved address. Developed by J Chernushevich, R Shah, B Komer, M Unger for a Facebook Hackathon.
Extension Basic Information
Name | |
ID | gdhkngibdllfjhciaobdcmeabafencdm |
Official URL | https://chrome.google.com/webstore/detail/easymap/gdhkngibdllfjhciaobdcmeabafencdm |
Description | Easily get directions to any address on a page! |
File Size | 98.3 KB |
Installation Count | 29 |
Current Version | 1.0.0 |
Last Updated | 2014-09-22 |
Publish Date | 2014-09-22 |
Rating | 5.00/5 Total 3 Ratings |
Developer | jchernus |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "EasyMap", "version": "1.0.0", "manifest_version": 2, "description": "Easily get directions to any address on a page!", "icons": { "128": "icon.png" }, "background": { "scripts": [ "popup.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*" ], "js": [ "popup.js" ], "run_at": "document_end" } ], "permissions": [ "tabs", "contextMenus", "geolocation", "https:\/\/maps.google.com\/*", "https:\/\/maps.googleapis.com\/*" ], "browser_action": { "default_icon": "menuIcon.png", "default_popup": "popup.html" }, "content_security_policy": "default-src 'none'; style-src 'self'; script-src 'self'; connect-src https:\/\/maps.googleapis.com; img-src https:\/\/maps.google.com" } |