EasyMap
Easily get directions to any address on a page!
什么是EasyMap?
EasyMap是由jchernus开发的Chrome扩展程序,该扩展的主要功能是“Easily get directions to any address on a page!”。
扩展截图
下载EasyMap扩展crx文件
下载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"
} | |