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 |
| 官方網址 | 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"
} | |