EasyMap
Easily get directions to any address on a page!
Что такое EasyMap?
EasyMap - это расширение Chrome, разработанное jchernus, и его основная функция - "Easily get directions to any address on a page!".
Снимки экрана расширения
Скачать файл CRX расширения EasyMap
Скачайте файлы расширений EasyMap в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | |
ID | gdhkngibdllfjhciaobdcmeabafencdm |
Официальный URL | https://chrome.google.com/webstore/detail/easymap/gdhkngibdllfjhciaobdcmeabafencdm |
Описание | Easily get directions to any address on a page! |
Размер файла | 98.3 KB |
Количество установок | 29 |
Текущая Версия | 1.0.0 |
Последнее Обновление | 2014-09-22 |
Дата публикации | 2014-09-22 |
Рейтинг | 5.00/5 Всего 3 оценок |
Разработчик | jchernus |
Тип оплаты | free |
Поддерживаемые языки | 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" } |