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"
} | |